:root {
    --bg-dark: #0a0a0f;
    --neon-purple: #b026ff;
    --neon-blue: #00d2ff;
    --neon-pink: #f9008c;
    --glass-bg: rgba(20, 20, 25, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
}

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

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

/* Background Blobs for Atmosphere */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--neon-purple);
}

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

.blob-3 {
    top: 40%;
    right: 40%;
    width: 400px;
    height: 400px;
    background: var(--neon-pink);
    opacity: 0.4;
    animation-duration: 25s;
}

@keyframes drift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(100px, 100px);
    }
}

/* Glassmorphism Container */
.glass-container {
    width: 100%;
    max-width: 1000px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 2rem;
    padding: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

/* Top Glow Line for Card */
.glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
    opacity: 0.7;
}

/* Header & Logo Section */
.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

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

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    animation: float 6s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    filter: blur(20px);
    z-index: 1;
    border-radius: 50%;
    animation: pulse 4s infinite alternate;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.brand-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 20%, var(--neon-blue) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Grid layout for cards */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Inner Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.2), rgba(0, 210, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.glass-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: 'Clash Display', sans-serif;
}

.glass-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    flex-grow: 1;
}

/* Neon Button */
.neon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink), var(--neon-blue));
    background-size: 300% 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradientShift 3s linear infinite;
}

.neon-btn:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
}

.neon-btn:hover .btn-glow {
    opacity: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.contact-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.email-display {
    font-family: monospace;
    color: var(--text-muted);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Footer & Links */
.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.hover-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.hover-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.5);
}

.hover-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

.hover-link:hover::after {
    width: 100%;
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Privacy Page Specifics */
.privacy-container {
    max-width: 800px;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.back-link:hover {
    opacity: 1;
    transform: translateX(-5px);
    color: var(--neon-blue);
}

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

.full-width {
    width: 100%;
}

.policy-content h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Animations Trigger */
[style*="--delay"] {
    animation: fadeUp 0.8s backwards ease-out;
    animation-delay: calc(var(--delay) * 0.15s);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .glass-container {
        padding: 2rem;
        gap: 2rem;
        border-radius: 1.5rem;
    }

    .brand-title {
        font-size: 3rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .footer-bar {
        flex-direction: column;
        text-align: center;
    }
}