@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --success: #10b981;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--light);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.7) contrast(1.1);
    will-change: opacity;
}

.slider img.active {
    opacity: 1;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(15, 23, 42, 0.75) 50%,
            rgba(37, 99, 235, 0.25) 100%);
    z-index: 1;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.profile-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 8px 20px 8px 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.profile-image {
    position: relative;
    width: 65px;
    height: 65px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--primary);
}

.online-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: var(--success);
    border-radius: 50%;
    border: 2px solid var(--dark);
    animation: pulse 2s infinite;
}

.profile-info {
    text-align: left;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2px;
    background: linear-gradient(135deg, #fff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-status {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.profile-status i {
    color: var(--success);
    font-size: 0.75rem;
    margin-right: 4px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating i {
    color: var(--accent);
    font-size: 0.75rem;
}

.rating-text {
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-left: 5px;
}

.trust-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-light);
}

.trust-badge i {
    color: var(--success);
    font-size: 0.75rem;
}

h1 {
    margin-bottom: 15px;
}

.light {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 300;
    display: block;
    color: var(--gray);
}

.bold {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 800;
    display: block;
    color: var(--light);
    line-height: 1.1;
    margin-bottom: 5px;
}

.tagline {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    margin-bottom: 30px;
    color: var(--gray);
    font-weight: 400;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 20px;
    border-radius: 60px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accent {
    color: var(--accent);
    font-weight: 600;
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 25px;
}

.btn {
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary i:first-child {
    color: var(--accent);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--light);
}

.btn-secondary i:first-child {
    color: var(--secondary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--light);
}

.btn-outline i {
    color: var(--success);
}

.btn-outline:hover {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.08);
}

.live-status {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 25px;
    border-radius: 60px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.live-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.live-item i {
    color: var(--success);
    font-size: 0.65rem;
    animation: pulse 2s infinite;
}

.footer-trust {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 18px;
    border-radius: 60px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-trust i {
    color: var(--primary);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media (max-width: 480px) {
    .profile-card {
        padding: 6px 15px 6px 6px;
        margin-bottom: 25px;
    }

    .profile-image {
        width: 55px;
        height: 55px;
    }

    .profile-name {
        font-size: 1.2rem;
    }

    .trust-badges {
        gap: 8px;
        margin-bottom: 15px;
    }

    .trust-badge {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    .tagline {
        margin-bottom: 25px;
        font-size: 0.95rem;
        padding: 6px 15px;
    }

    .btn {
        padding: 13px 20px;
        font-size: 1rem;
    }

    .live-status {
        gap: 15px;
        padding: 10px 18px;
        margin-bottom: 20px;
    }

    .live-item {
        font-size: 0.75rem;
    }

    .footer-trust {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
}