/* Calpaa - Technologischer Style */
/* Farben: Kob alt + Elektrik + Violett */

:root {
    /* Colors - Technologisch Theme */
    --primary-color: #0066ff;
    --secondary-color: #00e5ff;
    --accent-color: #8b5cf6;
    --success-color: #00ff88;
    --danger-color: #ff0055;
    --warning-color: #ffaa00;
    
    /* Backgrounds */
    --background-dark: #0a0e27;
    --background-secondary: #1a1f3a;
    --background-card: #232946;
    --text-light: #ffffff;
    --text-gray: #b8c1ec;
    --border-color: #2d3561;
    
    /* Effects */
    --glow-primary: 0 0 20px rgba(0, 102, 255, 0.5);
    --glow-secondary: 0 0 20px rgba(0, 229, 255, 0.5);
    --glow-accent: 0 0 20px rgba(139, 92, 246, 0.5);
    
    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Header */
    --header-height: 70px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    background-image: 
        radial-gradient(ellipse at top, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    background-attachment: fixed;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-shadow: var(--glow-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.3);
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.free-badge {
    background: var(--success-color);
    color: var(--background-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Navigation */
.navbar {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--secondary-color);
    box-shadow: var(--glow-secondary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-secondary);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(139, 92, 246, 0.2));
    background-attachment: scroll;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, rgba(0, 229, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(0, 229, 255, 0.03) 41px),
        repeating-linear-gradient(0deg, rgba(0, 229, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(0, 229, 255, 0.03) 41px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--background-dark);
    box-shadow: var(--glow-secondary);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-play {
    width: 100%;
    margin-top: 0.5rem;
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    background: var(--background-secondary);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--background-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(var(--glow-secondary));
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

/* Games Section */
.games-section {
    background: var(--background-dark);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.game-card {
    background: var(--background-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-secondary), var(--background-card));
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-info {
    padding: var(--spacing-lg);
}

.game-info h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.game-description {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-free {
    background: var(--success-color);
    color: var(--background-dark);
}

.tag-tech {
    background: var(--primary-color);
    color: var(--text-light);
}

.tag-fantasy {
    background: var(--accent-color);
    color: var(--text-light);
}

.tag-fun {
    background: var(--warning-color);
    color: var(--background-dark);
}

/* Testimonials */
.testimonials-section {
    background: var(--background-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--background-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--glow-accent);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--secondary-color);
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: var(--background-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-gray);
    line-height: 1.8;
}

/* Leaderboard */
.leaderboard-section {
    background: var(--background-secondary);
}

.leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.leaderboard-card {
    background: var(--background-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.leaderboard-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateX(5px);
}

.rank-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--background-secondary);
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--background-dark);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: var(--background-dark);
    border-color: #c0c0c0;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #e89b5a);
    color: var(--background-dark);
    border-color: #cd7f32;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
}

.player-info {
    display: flex;
    flex-direction: column;
}

.player-info strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.player-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Blog Preview */
.blog-preview-section {
    background: var(--background-dark);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.blog-card {
    background: var(--background-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.blog-card h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.blog-card p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

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

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, var(--danger-color), #cc0044);
    padding: var(--spacing-lg) 0;
    border-top: 3px solid var(--warning-color);
    border-bottom: 3px solid var(--warning-color);
}

.disclaimer-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.disclaimer-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.disclaimer-badges {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin: var(--spacing-lg) 0;
}

.badge {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--text-light);
    color: var(--background-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.disclaimer-content a {
    color: var(--warning-color);
    text-decoration: underline;
    font-weight: 700;
}

.disclaimer-content a:hover {
    color: var(--text-light);
}

.help-text {
    font-size: 1rem;
    margin-top: var(--spacing-md);
}

/* Footer */
.footer {
    background: var(--background-secondary);
    border-top: 2px solid var(--primary-color);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: var(--warning-color) !important;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Compliance Logos */
.age-section {
    margin-bottom: var(--spacing-md);
}

.age-restriction {
    display: inline-block;
    background: var(--danger-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid var(--text-light);
    box-shadow: var(--glow-primary);
}

.compliance-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.compliance-logo {
    height: 40px !important;
    width: auto !important;
    object-fit: contain;
    background: var(--text-light);
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.compliance-logo:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: scale(1.05);
}

/* Gambling Therapy logo needs dark background for white text */
.compliance-logo[src*="gambling-therapy"] {
    background: #1a1a2e;
    padding: 8px 12px;
}

.help-resources {
    margin-top: var(--spacing-md);
    color: var(--text-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* Popups */
.age-popup,
.cookie-banner,
.success-popup {
    position: fixed;
    z-index: 10000;
    display: none;
}

.age-popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-popup-content {
    background: var(--background-card);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--primary-color);
    box-shadow: var(--glow-primary);
}

.age-popup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    text-align: center;
}

.age-popup-body {
    padding: var(--spacing-lg);
    text-align: center;
}

.age-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* Cookie Banner */
.cookie-banner {
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: var(--background-card);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--glow-primary);
}

.cookie-banner p {
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* Success Popup */
.success-popup {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--background-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 2px solid var(--success-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    text-align: center;
    min-width: 300px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: var(--spacing-md);
}

/* Page Hero */
.page-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(139, 92, 246, 0.15));
    border-bottom: 2px solid var(--primary-color);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    :root {
        --header-height: 60px !important;
    }
    
    .header-container {
        padding: 0 var(--spacing-md);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        width: 100%;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid var(--primary-color);
        box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-radius: 0;
        font-size: 1rem;
    }
    
    .free-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero {
        padding-top: 100px !important;
        min-height: calc(100vh - 60px) !important;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid,
    .games-grid,
    .testimonials-grid,
    .leaderboard-grid,
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        right: 10px;
        left: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles - Large */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero p {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    .game-card {
        max-width: 100%;
    }
    
    .game-image {
        height: 200px;
    }
    
    .game-info {
        padding: var(--spacing-md);
    }
    
    .game-info h3 {
        font-size: 1.2rem;
    }
    
    .game-description {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        margin: 0;
    }
    
    .game-image {
        height: 180px;
    }
    
    .game-info {
        padding: var(--spacing-md);
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Mobile Styles - Small */
@media (max-width: 480px) {
    :root {
        --spacing-sm: 0.4rem;
        --spacing-md: 0.8rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .game-card {
        border-radius: var(--radius-md);
    }
    
    .game-image {
        height: 160px;
    }
    
    .game-info h3 {
        font-size: 1.1rem;
    }
    
    .game-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-play {
        width: 100%;
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

/* Mobile Styles - Extra Small */
@media (max-width: 360px) {
    .logo h1 {
        font-size: 1rem;
    }
    
    .free-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .game-image {
        height: 140px;
    }
    
    .game-info {
        padding: var(--spacing-sm);
    }
    
    .tag {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .game-card:hover,
    .feature-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    /* Make tap targets larger on touch devices */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Responsible Play Page Styles */
.notice-section {
    background: var(--background-dark);
    padding: var(--spacing-xl) 0;
}

.notice-box {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--warning-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.notice-box h2 {
    color: var(--warning-color);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.notice-box p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Guidelines Section */
.guidelines-section {
    background: var(--background-secondary);
    padding: var(--spacing-xl) 0;
}

.guidelines-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.guideline-card {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.guideline-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.guideline-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.time-icon {
    background: rgba(255, 20, 147, 0.2);
    color: #ff1493;
}

.balance-icon {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
}

.guideline-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0;
}

.guideline-card > p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.guideline-card ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.guideline-card ul li {
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.guideline-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* Mobile Responsive for Guidelines */
@media (max-width: 768px) {
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .guideline-card {
        padding: var(--spacing-lg);
    }
    
    .notice-box {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .guideline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .guideline-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Warning Signs Section */
.warning-signs-section {
    background: var(--background-dark);
    padding: var(--spacing-xl) 0;
}

.warning-signs-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--warning-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
}

.warning-card {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--danger-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
}

.warning-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

.warning-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.warning-card ul li {
    color: var(--text-gray);
    line-height: 1.6;
    padding-left: 0;
}

.warning-cta {
    background: rgba(255, 0, 85, 0.1);
    border: 2px solid rgba(255, 0, 85, 0.3);
    border-left: 4px solid var(--danger-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.warning-cta p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Self-Test Section */
.self-test-section {
    background: var(--background-secondary);
    padding: var(--spacing-xl) 0;
}

.self-test-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.self-test-box {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.self-test-box > p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.test-questions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.test-question {
    background: var(--background-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    color: var(--text-gray);
    line-height: 1.8;
    border-left: 3px solid var(--primary-color);
}

.test-question strong {
    color: var(--secondary-color);
    margin-right: var(--spacing-sm);
}

.test-result {
    background: rgba(0, 102, 255, 0.1);
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
}

.test-result p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.test-result p + p {
    margin-top: var(--spacing-sm);
}

/* Help Section */
.help-section {
    background: var(--background-dark);
    padding: var(--spacing-xl) 0;
}

.help-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
}

.help-card {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.help-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.help-logo {
    max-width: 150px;
    max-height: 60px;
    height: auto;
    width: auto;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.help-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0;
}

.help-card > p {
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.help-contact {
    background: var(--background-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    margin: var(--spacing-sm) 0;
}

.help-contact p {
    color: var(--text-gray);
    margin: var(--spacing-xs) 0;
    line-height: 1.6;
}

.help-contact a {
    color: var(--secondary-color);
    font-weight: 600;
}

.help-contact a:hover {
    color: var(--primary-color);
}

.help-contact small {
    color: var(--text-gray);
    opacity: 0.7;
    font-size: 0.85rem;
}

.emergency-box {
    background: rgba(255, 0, 85, 0.15);
    border: 2px solid var(--danger-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    text-align: center;
}

.emergency-box h3 {
    color: var(--danger-color);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.emergency-box > p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.emergency-contacts {
    background: var(--background-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
}

.emergency-contacts p {
    color: var(--text-light);
    margin: var(--spacing-sm) 0;
    line-height: 1.8;
}

.emergency-contacts a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.emergency-contacts a:hover {
    color: var(--primary-color);
}

.emergency-contacts small {
    color: var(--text-gray);
    opacity: 0.8;
    display: block;
    margin-top: var(--spacing-sm);
}

/* Tools Section */
.tools-section {
    background: var(--background-secondary);
    padding: var(--spacing-xl) 0;
}

.tools-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.tool-card {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.tool-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0;
}

.tool-card p {
    color: var(--text-gray);
    line-height: 1.8;
    flex-grow: 1;
}

/* Tips Section */
.tips-section {
    background: var(--background-dark);
    padding: var(--spacing-xl) 0;
}

.tips-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.tip-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 0 0 var(--spacing-sm) 0;
}

.tip-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Commitment Section */
.commitment-section {
    background: var(--background-secondary);
    padding: var(--spacing-xl) 0;
}

.commitment-box {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--success-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.commitment-box h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.commitment-box > p {
    color: var(--text-gray);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.commitment-list li {
    color: var(--text-gray);
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    font-size: 1.05rem;
}

.commitment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.commitment-box > p:last-of-type {
    margin-top: var(--spacing-lg);
    text-align: left;
}

.commitment-box a {
    color: var(--secondary-color);
    font-weight: 600;
}

.commitment-box a:hover {
    color: var(--primary-color);
}

/* Mobile Responsive for Responsible Play */
@media (max-width: 768px) {
    .warning-grid,
    .help-grid,
    .tools-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .self-test-box,
    .commitment-box {
        padding: var(--spacing-lg);
    }
    
    .tip-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-number {
        margin: 0 auto;
    }
}

/* About Page Styles */
.content-section {
    background: var(--background-dark);
    padding: var(--spacing-xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.content-text h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.highlight-box {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.highlight-box h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.highlight-box ul li {
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
}

.highlight-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.highlight-box ul li strong {
    color: var(--text-light);
}

/* Values Section */
.values-section {
    background: var(--background-secondary);
    padding: var(--spacing-xl) 0;
}

.values-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin: 0 auto var(--spacing-sm);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
}

.value-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Story Section */
.story-section {
    background: var(--background-dark);
    padding: var(--spacing-xl) 0;
}

.story-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: var(--spacing-xl);
}

.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    padding-left: calc(var(--spacing-xl) + var(--spacing-lg));
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: calc(var(--spacing-xl) - 10px);
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 3px solid var(--background-dark);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.timeline-year {
    position: absolute;
    left: calc(-1 * var(--spacing-xl) - 80px);
    top: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    box-shadow: var(--glow-primary);
}

.timeline-content {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.timeline-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Team Section */
.team-section {
    background: var(--background-secondary);
    padding: var(--spacing-xl) 0;
}

.team-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.team-avatar {
    font-size: 4rem;
    margin: 0 auto var(--spacing-sm);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.team-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.team-card p:last-of-type {
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
    margin: var(--spacing-md) 0 0 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(139, 92, 246, 0.15));
    padding: var(--spacing-xl) 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: var(--spacing-lg);
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: calc(var(--spacing-lg) + var(--spacing-md));
    }
    
    .timeline-item::before {
        left: calc(var(--spacing-lg) - 8px);
        width: 16px;
        height: 16px;
    }
    
    .timeline-year {
        position: static;
        display: inline-block;
        margin-bottom: var(--spacing-md);
        left: auto;
    }
    
    .highlight-box {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .content-text p,
    .timeline-content p,
    .team-card p {
        font-size: 1rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    background: var(--background-dark);
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.privacy-intro p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

.privacy-intro strong {
    color: var(--text-light);
}

.privacy-section {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.privacy-section h2 {
    color: var(--text-light);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-section h3 {
    color: var(--text-light);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.privacy-section p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-md);
}

.privacy-section ul,
.privacy-section ol {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.privacy-section ul li,
.privacy-section ol li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-xs);
}

.privacy-section ul li::marker {
    color: var(--secondary-color);
}

.privacy-section ol li::marker {
    color: var(--secondary-color);
    font-weight: 600;
}

.privacy-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.privacy-section a:hover {
    color: var(--primary-color);
}

.info-box {
    background: var(--background-secondary);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin: var(--spacing-md) 0;
}

.info-box p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.info-box strong {
    color: var(--text-light);
    font-size: 1.1rem;
}

.info-box a {
    color: var(--secondary-color);
    font-weight: 600;
}

.info-box a:hover {
    color: var(--primary-color);
}

.privacy-important {
    background: rgba(255, 170, 0, 0.15);
    border: 2px solid var(--warning-color);
    border-left: 4px solid var(--warning-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.privacy-important h3 {
    color: var(--warning-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.privacy-important p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.privacy-important strong {
    color: var(--text-light);
}

/* Mobile Responsive for Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: var(--spacing-lg) 0;
    }
    
    .privacy-intro,
    .privacy-section {
        padding: var(--spacing-lg);
    }
    
    .content-wrapper {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .privacy-section p,
    .privacy-section ul,
    .privacy-section ol {
        font-size: 1rem;
    }
}

/* Account Section */
.account-section {
    padding: var(--spacing-xl) 0;
    min-height: calc(100vh - var(--header-height) - 200px);
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 2rem;
    background: var(--background-card);
    border: 2px solid var(--border-color);
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
    font-family: inherit;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--glow-primary);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--glow-primary);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

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

/* Form Container */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.2);
}

.form-container h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-container > p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

/* Account Form */
.account-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--background-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

.form-group small {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: -0.5rem;
}

/* Date Input Wrapper */
.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input-wrapper input[type="date"] {
    padding-right: 3rem;
}

.date-icon {
    position: absolute;
    right: 1rem;
    color: var(--text-gray);
    pointer-events: none;
    font-size: 1.1rem;
}

/* Checkbox Group */
.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--primary-color);
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: var(--spacing-sm);
}

.link-secondary {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-decoration: underline;
}

.link-secondary:hover {
    color: var(--secondary-color);
}

/* Form Note */
.form-note {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(0, 102, 255, 0.1);
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
}

.form-note p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.form-note p + p {
    margin-top: var(--spacing-sm);
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-card {
    background: var(--background-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
}

.contact-card small {
    color: var(--text-gray);
    opacity: 0.7;
    font-size: 0.85rem;
}

.contact-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Button Block */
.btn-block {
    width: 100%;
}

/* Mobile Responsive for Account */
@media (max-width: 768px) {
    .account-section {
        padding: var(--spacing-lg) 0;
    }
    
    .form-container {
        padding: var(--spacing-lg);
    }
    
    .tabs-nav {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

