:root {
    --primary: #7982FF;
    --secondary: #5a65ff;
    --accent: #b4b9ff;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --bg-dark: #2D315F;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.background-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: move 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.1); }
}

.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    z-index: 1;
    animation: fadeIn 1.2s ease-out;
}

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

.logo-section {
    margin-bottom: 3rem;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #d1d1d1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.content .title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content .description {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.timer-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.time-block {
    display: flex;
    flex-direction: column;
}

.time-block .number {
    font-size: 3.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.time-block .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.info-card {
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 0.2rem;
}

.info-value {
    font-weight: 600;
    font-size: 1rem;
}

.divider {
    width: 1px;
    height: 30px;
    background: var(--glass-border);
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

footer a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 0.8rem;
}

footer a:hover {
    color: var(--primary);
}

.whatsapp-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    animation: fadeIn 1.5s ease-out;
}

.whatsapp-text {
    font-size: 1.1rem;
    color: var(--text-dim);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: #20ba59;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 600px) {
    .timer {
        gap: 1rem;
    }
    
    .time-block .number {
        font-size: 2.2rem;
    }

    .info-card {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .info-item {
        text-align: center;
    }

    .divider {
        width: 50%;
        height: 1px;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .content .title {
        font-size: 1.8rem;
    }
}

/* Privacy Policy Specific Styles */
.privacy-page {
    display: block; /* Disable the flex centering from body for this page */
    padding: 4rem 1rem;
    min-height: 100vh;
}

.privacy-container {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.back-nav {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.back-link:hover {
    transform: translateX(-5px);
    background: var(--glass-border);
}

.privacy-header {
    margin-bottom: 3rem;
}

.privacy-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-date {
    color: var(--text-dim);
    font-size: 1.1rem;
}

.intro-card {
    padding: 1.5rem 2rem;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.section-content {
    color: var(--text-dim);
    line-height: 1.7;
}

.info-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-group h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.note-box {
    margin-top: 2rem;
    padding: 1.2rem;
    background: rgba(121, 130, 255, 0.08);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.note-box p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.styled-list {
    list-style: none;
    margin-top: 1rem;
}

.styled-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.contact-details {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.separator {
    height: 1px;
    background: var(--glass-border);
    margin: 3rem 0;
    opacity: 0.5;
}

.privacy-footer {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Specific Responsive for Privacy */
@media (max-width: 600px) {
    .privacy-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .privacy-page {
        padding-top: 2rem;
    }
}
