@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-gold: #FFD700;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    --bg-dark: #0A0A0A;
    --card-bg: #1A1A1A;
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Coming Soon Styles */
.coming-soon-container {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-animation {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    position: relative;
}

.logo-animation img {
    width: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    animation: pulse 2s infinite ease-in-out;
}

.logo-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.coming-soon-badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.brand-name {
    color: var(--primary-gold);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.9rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.loader-wrapper {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.progress-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: width 0.1s linear;
}

.status-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.redirect-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

/* Privacy Policy Styles */
.privacy-page {
    background: var(--bg-dark);
    width: 100%;
    min-height: 100vh;
    display: block;
}

.privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dg-logo-box {
    background: var(--primary-gold);
    color: #000;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.header-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
}

.back-btn {
    background: transparent;
    color: var(--text-white);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.privacy-hero {
    padding: 2rem 5% 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
    opacity: 0.8;
}

.hero-coin {
    width: 140px;
    height: 140px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-coin img {
    width: 80%;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.hero-coin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.content-wrapper {
    background: var(--text-white);
    color: #333333;
    margin: 0 5% 5rem;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.content-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.content-wrapper p {
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
    font-size: 1rem;
}

.section-card {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.section-number {
    background: var(--primary-gold);
    color: #000;
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border-radius: 8px;
}

.section-content h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.section-content ul {
    list-style: none;
}

.section-content li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
}

.section-content li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-header {
        padding: 1.2rem 5%;
    }

    .header-logo span {
        font-size: 1.2rem;
    }

    .dg-logo-box {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .back-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .privacy-hero {
        padding: 2rem 5% 3rem;
        flex-direction: row; /* Keep coin on right */
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-text {
        flex: 1;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .hero-coin {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 5% 3rem;
        border-radius: 20px;
    }
    
    .section-card {
        flex-direction: row; /* Keep number and text side-by- side */
        gap: 15px;
    }
}

@media (min-width: 769px) {
    .content-wrapper {
        max-width: 900px;
        margin: 0 auto 5rem;
    }

    .privacy-hero {
        max-width: 900px;
        margin: 0 auto;
        padding: 3rem 0;
    }

    .privacy-header {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }
}
