:root {
    --primary: #FF7A00;
    --primary-dark: #E56D00;
    --secondary: #000b47;
    --secondary-light: #0B1A6B;
    --background: #FAFAFA;
    --surface: #FFFFFF;
    --text: #1a1a1a;
    --text-muted: #6B7280;
    --border: #E6E8F0;
    --success: #10B981;
    --radius: 0.625rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--background);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out;
}

.logo {
    max-width: 220px;
    height: auto;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

h1 {
    font-family: 'Figtree', system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 14px rgba(255, 122, 0, 0.3);
    animation: pulse 2s infinite;
}

.status-badge svg {
    width: 20px;
    height: 20px;
}

.features {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background);
    border-radius: var(--radius);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.security {
    background: rgba(0, 11, 71, 0.1);
    color: var(--secondary);
}

.feature-icon.shield {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.feature-icon.lock {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text {
    font-size: 0.875rem;
}

.feature-text strong {
    display: block;
    color: var(--text);
    font-weight: 600;
}

.feature-text span {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* Warning Panel - IP Tracking */
.warning-panel {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius);
    display: flex;
    gap: 1rem;
    text-align: left;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.warning-icon {
    width: 44px;
    height: 44px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #DC2626;
    animation: watchPulse 3s ease-in-out infinite;
}

.warning-icon svg {
    width: 22px;
    height: 22px;
}

.warning-content {
    flex: 1;
}

.warning-content strong {
    display: block;
    color: #DC2626;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.warning-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.ip-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 0.375rem;
    font-size: 0.75rem;
}

.ip-label {
    color: var(--text-muted);
    font-weight: 500;
}

.ip-display code {
    color: #DC2626;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    background: none;
    padding: 0;
}

@keyframes watchPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
    }
}

.server-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.server-info code {
    background: var(--background);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: 'JetBrains Mono', monospace;
}

footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    animation: fadeIn 0.6s ease-out 0.4s both;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(255, 122, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 122, 0, 0.5);
    }
}

/* Carousel */
.carousel-container {
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.carousel {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 11, 71, 0.85));
    color: white;
    font-family: 'Figtree', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-dark);
}

.carousel-credit {
    text-align: center;
    font-size: 0.625rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.carousel-credit a {
    color: var(--text-muted);
    text-decoration: none;
}

.carousel-credit a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 480px) {
    body {
        padding: 1rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 180px;
    }
}
