/* ==========================================
   LUDY GAMES - STYLING SHEET
   ========================================== */

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

/* ==========================================
   1. HOMEPAGE SPECIFIC STYLING (Dark Theme)
   ========================================== */

body.home-page {
    /* Deep space dark gradient background */
    background: radial-gradient(circle at center, #050508 0%, #000000 100%);
    height: 100vh;
    width: 100vw;
    overflow: hidden; /* Prevent scrolling on homepage */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

.centered-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 20px;
}

.giant-title {
    font-size: clamp(3rem, 12vw, 9rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-indent: 0.05em; 
    color: #ffffff;
    
    /* breathing drop shadow glow */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    animation: breathingGlow 5s infinite alternate ease-in-out;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-logo {
    width: clamp(120px, 20vw, 200px);
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), 
                filter 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.centered-logo:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.35));
}

@keyframes breathingGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
        transform: scale(0.99);
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.45));
        transform: scale(1.01);
    }
}


/* ==========================================
   2. PRIVACY POLICY PAGE STYLING (Light Theme)
   ========================================== */

body.privacy-page {
    background-color: #f8fafc; /* light slate-grey background */
    color: #1e293b; /* dark slate body text */
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    height: auto;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto; /* Allow scrolling on policy page */
    display: block; /* normal document flow */
    padding: 60px 20px;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff; /* clean white container */
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06); /* subtle soft shadow */
}

/* Headings */
.privacy-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #0f172a; /* dark slate main title */
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
    letter-spacing: -0.02em;
}

.privacy-page h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    font-weight: 700;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 1.5px solid #f1f5f9;
    padding-bottom: 8px;
    letter-spacing: -0.01em;
}

.privacy-page h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    color: #334155;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Paragraphs & Lists */
.privacy-page p {
    font-size: 1.05rem;
    font-weight: 400;
    color: #334155; /* highly readable text gray */
    margin-bottom: 20px;
}

.privacy-page ul {
    margin-bottom: 25px;
    padding-left: 24px;
}

.privacy-page li {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 10px;
}

/* Nested lists style */
.privacy-page ul ul {
    margin-top: 8px;
    margin-bottom: 5px;
    list-style-type: circle;
}

.privacy-page ul ul li {
    font-size: 0.98rem;
    color: #475569;
}

/* Hyperlinks */
.privacy-page a {
    color: #2563eb; /* professional blue */
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed #2563eb;
    transition: all 0.2s ease;
}

.privacy-page a:hover {
    color: #1d4ed8;
    border-bottom-style: solid;
}

/* Contacts listing layout card list */
.contacts-list > li {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    list-style: none; /* remove default dot for contact cards */
}

/* Back Link styling on light theme */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b; /* slate gray */
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 35px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.back-btn:hover {
    color: #0f172a; /* hover to dark slate */
    transform: translateX(-4px);
}

.back-arrow {
    font-size: 1.2rem;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    body.privacy-page {
        padding: 30px 15px;
    }
    .privacy-container {
        padding: 30px 25px;
        border-radius: 12px;
    }
}
