/* ===== HYPER GAMING STUDIO - Privacy Policy Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #FF6B00;
    --primary-dark: #E55A00;
    --primary-light: #FF8A33;
    --secondary: #1A1A1A;
    --accent: #00C853;
    --bg-light: #FFFFFF;
    --bg-gray: #F5F5F5;
    --bg-card: #FFFFFF;
    --bg-dark: #1A1A1A;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-muted: #999999;
    --text-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 4px 20px rgba(255, 107, 0, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gray);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
.header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--text-white);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(255, 107, 0, 0.08);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Main Content */
.main {
    padding-top: 20px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius-lg);
    padding: 50px 30px;
    margin: 20px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.page-title .gradient {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* Content Section */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 16px;
}

.content-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}

.content-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary);
}

.content-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 16px;
    color: var(--text-primary);
}

.content-block p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 14px;
}

.content-block ul {
    color: var(--text-secondary);
    padding-left: 20px;
    margin-bottom: 12px;
}

.content-block li {
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: 14px;
}

.content-block a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.content-block a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 30px 16px;
    margin-top: 40px;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 768px) {
    .header {
        padding: 12px 16px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 14px 16px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .page-hero {
        padding: 40px 20px;
        margin: 16px 12px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .content-section {
        padding: 20px 12px;
    }
    
    .content-block {
        padding: 24px 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .main {
        padding-top: 10px;
    }
    
    .page-hero {
        padding: 35px 16px;
        margin: 12px 10px;
        border-radius: 16px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .content-section {
        padding: 16px 10px;
    }
    
    .content-block {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .content-block h2 {
        font-size: 16px;
    }
    
    .content-block p,
    .content-block li {
        font-size: 13px;
    }
    
    .footer {
        padding: 24px 12px;
        margin-top: 30px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .page-title {
        font-size: 22px;
    }
}
