:root {
    --bg-dark: #07070a;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover: rgba(255, 255, 255, 0.07);
    --discord-color: #5865F2;
    --discord-hover: #4752C4;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.purple-orb {
    top: 5%;
    left: 15%;
    background: var(--accent-purple);
    animation: float 10s ease-in-out infinite;
}

.blue-orb {
    bottom: 20%;
    right: 15%;
    background: var(--accent-blue);
    animation: float 12s ease-in-out infinite reverse;
}

.pink-orb {
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background: var(--accent-pink);
    opacity: 0.1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

/* Container */
.container {
    width: 100%;
    max-width: 600px;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1;
}

/* Header */
.profile-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fade-up 0.8s ease-out forwards;
}

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

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(135deg, var(--accent-purple), var(--accent-blue)) border-box;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
    object-fit: cover;
    margin-bottom: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.avatar:hover {
    transform: scale(1.08) rotate(-3deg);
}

.title {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.verified-badge {
    width: 24px;
    height: 24px;
    color: #3b82f6;
    margin-left: 0.2rem;
}

.description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 85%;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.8rem;
    margin-bottom: 0.3rem;
}

.social-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

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

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-btn.snapchat:hover {
    background: #FFFC00;
    color: #000;
    border-color: #FFFC00;
    box-shadow: 0 8px 20px rgba(255, 252, 0, 0.4);
}

.social-btn.tiktok:hover {
    background: #010101;
    color: #fff;
    border-color: #ff0050;
    box-shadow: 0 8px 20px rgba(255, 0, 80, 0.3);
}

.social-btn.youtube:hover {
    background: #FF0000;
    color: #fff;
    border-color: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.social-btn.dlive:hover {
    background: #FFD300;
    color: #000;
    border-color: #FFD300;
    box-shadow: 0 8px 20px rgba(255, 211, 0, 0.4);
}

/* Detailed Offer Card */
.detailed-offer-card {
    display: flex;
    flex-direction: column;
    background: #0c0c0e;
    border: 1px solid rgba(250, 204, 21, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-main);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
    animation: fade-up 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.detailed-offer-card:hover {
    border-color: rgba(250, 204, 21, 0.5);
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.15);
    transform: translateY(-4px);
}

.rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #facc15;
    color: #000;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 14px 0 10px 0;
    font-size: 0.95rem;
}

.exclusive-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    border: 1px solid rgba(250, 204, 21, 0.4);
    background: rgba(250, 204, 21, 0.05);
    color: #facc15;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.offer-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 1.5rem;
}

.brand-logo {
    width: 65px;
    height: 65px;
    background: #0f172a;
    border: 2px solid #22c55e;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.brand-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.stars-yellow {
    color: #facc15;
    font-size: 1rem;
    letter-spacing: 2px;
}

.offer-highlight {
    background: rgba(250, 204, 21, 0.04);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 14px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 25px rgba(250, 204, 21, 0.05);
}

.offer-highlight h2 {
    font-size: 2.3rem;
    font-weight: 900;
    color: #fef08a;
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
}

.highlight-condition {
    color: #facc15;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.offer-stats-box {
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.stats-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.choice-badge {
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.25);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

.rating {
    font-weight: 800;
    font-size: 1.4rem;
    color: #facc15;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.rating .stars-yellow {
    font-size: 0.85rem;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    width: 85%;
    height: 100%;
    background: #facc15;
    box-shadow: 0 0 10px #facc15;
}

.players-count {
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trustpilot {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.offer-tags-row {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag.cb { color: #38bdf8; border-color: rgba(56, 189, 248, 0.4); }
.tag.crypto { color: #fb923c; border-color: rgba(251, 146, 60, 0.4); }
.tag.vpn { color: #fbbf24; border-color: rgba(251, 191, 36, 0.4); }

.offer-footer-checks {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.check-item {
    font-size: 0.85rem;
    font-weight: 800;
    color: #facc15;
}

.check-item.green { color: #22c55e; }
.check-item.blue { color: #3b82f6; }

.offer-action-btn {
    background: linear-gradient(180deg, #fef08a 0%, #eab308 100%);
    color: #000;
    text-align: center;
    padding: 1.4rem;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 5px 25px rgba(250, 204, 21, 0.3);
    margin-top: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detailed-offer-card:hover .offer-action-btn {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.5);
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Highlighted Cards Specific styling */
.highlight-card.betify:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}
.highlight-card.betify:hover .card-arrow {
    color: var(--accent-purple);
}

.highlight-card.dragonia:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.2);
}
.highlight-card.dragonia:hover .card-arrow {
    color: var(--accent-pink);
}

/* Discord Promo Section */
.discord-promo {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(20, 20, 30, 0.8) 100%);
    border: 1px solid rgba(88, 101, 242, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fade-up 0.8s ease-out 0.4s forwards;
    opacity: 0;
    box-shadow: inset 0 0 20px rgba(88, 101, 242, 0.05);
}

.discord-promo::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--discord-color);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.discord-logo {
    width: 32px;
    height: 32px;
    color: var(--discord-color);
}

.discord-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

.discord-stats-badge {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.discord-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.discord-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-main);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.2rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.discord-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 250px;
}

.discord-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.discord-features span {
    font-size: 1.2rem;
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--discord-color);
    color: white;
    text-decoration: none;
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.3);
}

.discord-logo-btn {
    width: 24px;
    height: 24px;
}

.discord-btn:hover {
    background: var(--discord-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

/* Info Panels Section */
.info-panels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    animation: fade-up 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: #facc15;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.8rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.info-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--card-hover);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

.numbered-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.numbered-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.numbered-list li strong {
    color: var(--text-main);
}

.step-num {
    background: #facc15;
    color: #000;
    font-weight: 700;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(250, 204, 21, 0.25);
}

.info-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #facc15;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.features-list li span {
    font-size: 1.2rem;
    margin-top: -2px;
}

.features-list li strong {
    color: var(--text-main);
}

/* Detailed Footer */
.footer-detailed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-bottom: 2rem;
    animation: fade-up 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.footer-top-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.legal-card {
    background: rgba(15, 15, 17, 0.8);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    width: 100%;
}

.legal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.age-badge {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border: 2px solid #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-weight: 900;
    font-size: 1.1rem;
}

.legal-header p {
    font-weight: 700;
    color: #d1d5db;
    font-size: 0.95rem;
    text-align: left;
    max-width: 200px;
    line-height: 1.4;
}

.legal-brand {
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.legal-copy {
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.legal-text {
    color: #475569;
    font-size: 0.75rem;
    line-height: 1.5;
}

.floating-discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #5865F2;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
}

.floating-discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(88, 101, 242, 0.6);
}

.notification-badge {
    background: #ef4444;
    color: white;
    font-size: 0.8rem;
    font-weight: 900;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.2rem;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }
    .title {
        font-size: 1.5rem;
    }
    .avatar {
        width: 90px;
        height: 90px;
    }
    .discord-metrics {
        gap: 1.5rem;
    }
}
