:root {
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --bg-glass: rgba(20, 20, 25, 0.6);
    --border-glass: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/wallpaperweb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.fullscreen-bg.blurred {
    filter: blur(10px) brightness(0.6);
    transform: scale(1.05); /* Prevents blur bleeding at edges */
}

/* Privacy Page Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out;
}

.glass-card h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #e0e0e0;
}

.glass-card p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.glass-card ul {
    margin-bottom: 24px;
    padding-left: 20px;
    color: var(--text-secondary);
}

.glass-card li {
    margin-bottom: 8px;
}

.glass-card a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.glass-card a:hover {
    color: #aaa;
}

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

/* Home Page Styles */
.home-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10vh 20px 8vh;
    z-index: 1;
}

.hero-text {
    text-align: center;
    margin-top: 5vh;
    animation: fadeInDown 1s ease-out;
}

.hero-text h1 {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.bottom-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: backwards;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    line-height: 0;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.action-btn svg {
    width: 28px;
    height: 28px;
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .container {
        padding: 40px 16px;
    }
    
    .glass-card {
        padding: 24px;
        border-radius: 16px;
    }

    .glass-card h1 {
        font-size: 2rem;
    }

    .glass-card h2 {
        font-size: 1.25rem;
    }

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

    .hero-text p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .action-btn {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .action-btn svg {
        width: 24px;
        height: 24px;
    }

    .bottom-actions {
        gap: 12px;
    }
}
