/* Base Styles */
:root {
    --primary-color: #8B4513;
    --secondary-color: #DAA520;
    --accent-color: #228B22;
    --background-light: #fefefe;
    --background-dark: #1e1e1e;
    --text-light: #2c3e50;
    --text-dark: #e2e8f0;
    --text-body-light: #4a5568;
    --text-body-dark: #cbd5e0;
    --text-muted-light: #718096;
    --text-muted-dark: #a0aec0;
    --transition-speed: 0.3s;
}

/* Modern Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-body-light);
    background: var(--background-light);
    transition: background var(--transition-speed), color var(--transition-speed);
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem;
    transition: color var(--transition-speed);
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle, .mobile-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-light);
    padding: 0.25rem;
    transition: transform var(--transition-speed);
}

.theme-toggle:hover, .mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-links a {
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.mobile-menu-links a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

/* Dark mode navigation */
body.dark-mode .main-nav {
    background: rgba(0, 0, 0, 0.1);
}

body.dark-mode .logo,
body.dark-mode .nav-links a,
body.dark-mode .theme-toggle,
body.dark-mode .mobile-menu-toggle {
    color: var(--text-dark);
}

body.dark-mode .mobile-menu {
    background: rgba(42, 42, 42, 0.95);
}

body.dark-mode .mobile-menu-links a {
    color: var(--text-dark);
}

body.dark-mode .mobile-menu-links a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Responsive navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-category {
    margin-bottom: 4rem;
}

.category-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 1.75rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.feature-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.highlight {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight ul {
    list-style: none;
    padding: 0;
}

.highlight li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.highlight li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Gameplay Section */
.gameplay-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gameplay-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
}

.gameplay-section .section-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-body-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gameplay-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gameplay-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

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

.step-card p {
    color: var(--text-body-light);
    line-height: 1.6;
}

.gameplay-features {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gameplay-features h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.8rem;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: transform var(--transition-speed);
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-item h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-item p {
    color: var(--text-body-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Screenshot Section */
.screenshots-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.screenshot-group {
    margin: 4rem 0;
}

.screenshot-group h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.screenshot-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.screenshot-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-container:hover img {
    transform: scale(1.02);
}

.screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-container:hover .screenshot-caption {
    transform: translateY(0);
}

/* Achievements Section */
.achievements-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.achievements-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
}

.achievements-section .section-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-body-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-category {
    margin-bottom: 4rem;
}

.achievement-category h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.badge-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.badge-card h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.badge-card p {
    color: var(--text-body-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.gc-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gc-achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
}

.gc-achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.gc-achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gc-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.gc-achievement-card h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gc-achievement-card p {
    color: var(--text-body-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.comparison-table th:first-child {
    border-top-left-radius: 15px;
}

.comparison-table th:last-child {
    border-top-right-radius: 15px;
}

.feature-yes {
    color: #2ecc71;
    font-weight: bold;
}

.feature-no {
    color: #95a5a6;
}

.comparison-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Signup Section */
.signup-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: white;
}

.signup-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.checkbox-group {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.checkbox-group p {
    margin-bottom: 1rem;
    color: white;
    font-weight: 500;
}

.signup-form button {
    width: 100%;
    padding: 1rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform var(--transition-speed);
}

.signup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.signup-form button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: color var(--transition-speed);
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Dark Mode */
body.dark-mode {
    background: var(--background-dark);
    color: var(--text-body-dark);
}

/* Dark mode for hero section */
body.dark-mode .hero {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.7) 0%, rgba(156, 39, 176, 0.7) 100%);
}

/* Dark mode for features section */
body.dark-mode .features-section {
    background: #1a1a1a;
}

body.dark-mode .section-intro {
    color: #ccc;
}

body.dark-mode .feature-card,
body.dark-mode .highlight {
    background: #2a2a2a;
}

body.dark-mode .feature-card p,
body.dark-mode .feature-list li,
body.dark-mode .highlight li {
    color: #ccc;
}

body.dark-mode .feature-card h4 {
    color: var(--primary-color);
}

/* Dark mode for gameplay section */
body.dark-mode .gameplay-section {
    background: #1a1a1a;
}

body.dark-mode .step-card,
body.dark-mode .gameplay-features {
    background: #2a2a2a;
}

body.dark-mode .step-card h3,
body.dark-mode .gameplay-features h3 {
    color: var(--primary-color);
}

body.dark-mode .step-card p,
body.dark-mode .highlight-item p {
    color: #ccc;
}

body.dark-mode .highlight-item {
    background: #2a2a2a;
}

body.dark-mode .highlight-item h4 {
    color: var(--primary-color);
}

/* Dark mode for achievements section */
body.dark-mode .achievements-section {
    background: #1a1a1a;
}

body.dark-mode .badge-card,
body.dark-mode .gc-achievement-card {
    background: #2a2a2a;
}

body.dark-mode .badge-card h4,
body.dark-mode .gc-achievement-card h4 {
    color: var(--primary-color);
}

body.dark-mode .badge-card p,
body.dark-mode .gc-achievement-card p {
    color: #ccc;
}

/* Dark mode for screenshots section */
body.dark-mode .screenshots-section {
    background: #1a1a1a;
}

body.dark-mode .screenshot-container {
    background: #2a2a2a;
}

body.dark-mode .screenshot-caption {
    background: rgba(0, 0, 0, 0.8);
}

/* Dark mode for comparison section */
body.dark-mode .comparison-section {
    background: #1a1a1a;
}

body.dark-mode .comparison-table-wrapper,
body.dark-mode .highlight-card {
    background: #2a2a2a;
}

body.dark-mode .comparison-table td {
    border-bottom-color: #444;
}

body.dark-mode .feature-no {
    color: #7f8c8d;
}

/* Dark mode for signup section */
body.dark-mode .signup-section {
    background: linear-gradient(135deg, rgba(255, 154, 158, 0.5) 0%, rgba(250, 208, 196, 0.5) 100%);
}

body.dark-mode .signup-form {
    background: rgba(42, 42, 42, 0.6);
}

body.dark-mode .form-group input[type="text"],
body.dark-mode .form-group input[type="email"],
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

body.dark-mode .checkbox-group {
    background: rgba(0, 0, 0, 0.2);
}

body.dark-mode .signup-form button {
    background: var(--primary-color);
    color: white;
}

/* Dark mode for survey section */
body.dark-mode .survey-section {
    background: #1a1a1a;
}

body.dark-mode .survey-card {
    background: #2a2a2a;
    color: var(--text-dark);
}

body.dark-mode .survey-button {
    background: var(--secondary-color);
}

/* Dark mode for watch app section */
body.dark-mode .watch-app-section {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
}

body.dark-mode .watch-app-tagline,
body.dark-mode .watch-feature p,
body.dark-mode .launch-note {
    color: #ccc;
}

/* Dark mode for category navigation */
body.dark-mode .category-nav {
    background: rgba(42, 42, 42, 0.9);
}

body.dark-mode .category-nav-item {
    background: #2a2a2a;
    border-color: #444;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .features-grid,
    .feature-highlights {
        grid-template-columns: 1fr;
    }
    
    .feature-category {
        margin-bottom: 3rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    .main-nav {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
    
    .comparison-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.gdpr-container {
    max-width: 90%;
    margin: 0 auto 1.5rem;
    text-align: left;
}

.checkbox-container {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block;
    font-size: 0.9rem;
    color: white;
    line-height: 1.5;
    text-align: left;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #f0f0f0;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-text {
    display: inline;
}

.form-error {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-message {
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    display: none;
    animation: fadeInUp 0.5s ease;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border: 2px solid rgba(76, 175, 80, 0.3);
    color: #2e7d32;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(244, 67, 54, 0.05));
    border: 2px solid rgba(244, 67, 54, 0.3);
    color: #c62828;
}

/* Enhanced success and error message components */
.success-message,
.error-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.success-icon,
.error-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.success-content,
.error-content {
    flex: 1;
}

.success-content h4,
.error-content h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.success-content p,
.error-content p {
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}

.success-content ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.success-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.success-note,
.error-note {
    font-weight: 600;
    font-style: italic;
    margin-top: 1rem !important;
    padding: 0.75rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
}

/* Dark mode support for form messages */
body.dark-mode .form-message.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
    border-color: rgba(76, 175, 80, 0.4);
    color: #81c784;
}

body.dark-mode .form-message.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15), rgba(244, 67, 54, 0.08));
    border-color: rgba(244, 67, 54, 0.4);
    color: #e57373;
}

body.dark-mode .success-note,
body.dark-mode .error-note {
    background: rgba(0, 0, 0, 0.2);
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

button.loading .button-text {
    display: none;
}

button.loading .loading-spinner {
    display: inline-block;
}

/* Survey Section */
.survey-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.survey-container {
    max-width: 800px;
    margin: 2rem auto;
}

.survey-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.survey-card:hover {
    transform: translateY(-5px);
}

.survey-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.survey-button:hover {
    transform: translateX(5px);
}

.arrow {
    transition: transform 0.3s ease;
}

.survey-button:hover .arrow {
    transform: translateX(5px);
}

/* Feature Animations and Mobile Navigation */
.feature-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.title-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-visible {
    opacity: 1;
    transform: translateY(0);
}

.category-nav {
    position: sticky;
    top: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 1rem 0;
    margin: 0 -2rem 2rem;
    max-width: calc(100% + 4rem);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}

.category-nav.visible {
    opacity: 1;
    transform: translateY(0);
}

.category-nav-list {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
}

.category-nav-list::-webkit-scrollbar {
    display: none;
}

.category-nav-item {
    background: white;
    border: 1px solid #ddd;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-nav-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

body.dark-mode .category-nav {
    background: rgba(42, 42, 42, 0.9);
}

body.dark-mode .category-nav-item {
    background: #2a2a2a;
    border-color: #444;
    color: var(--text-dark);
}

/* Media queries for feature navigation */
@media (max-width: 768px) {
    .category-nav {
        display: block;
    }
    
    .feature-category {
        scroll-margin-top: 120px;
    }
}

/* Category hover effects */
.feature-category {
    position: relative;
    transition: transform 0.3s ease;
    scroll-margin-top: 80px;
}

@media (hover: hover) {
    .feature-category:hover .category-title::after {
        width: 120px;
    }
}

/* Feature card staggered animation */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }

/* Apple Watch App Section */
.watch-app-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    overflow: hidden;
}

.watch-app-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.watch-app-content {
    flex: 1;
    max-width: 600px;
}

.watch-app-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.watch-app-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
}

.watch-app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.watch-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.watch-feature-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.watch-feature p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

.watch-app-cta {
    margin-top: 2rem;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.launch-note {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.watch-app-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
    max-width: 400px;
    margin-left: auto;
}

.watch-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    min-height: 320px;
}

.real-watch-image {
    max-width: 280px;
    width: 280px;
    height: auto;
    display: block !important;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
    opacity: 1;
    transform: rotate(6deg);
    z-index: 100;
}

.watch-mockup {
    position: relative;
    width: 240px;
    height: 360px;
    margin: 0 auto;
    animation: float-watch 6s ease-in-out infinite;
}

.watch-frame {
    position: relative;
    width: 180px;
    height: 220px;
    background: #333;
    border-radius: 40px;
    margin: 0 auto;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 0 15px #444,
        0 0 0 16px #222;
    overflow: hidden;
}

.watch-screen {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: #000;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.watch-crown {
    position: absolute;
    top: 80px;
    right: -8px;
    width: 16px;
    height: 30px;
    background: #555;
    border-radius: 8px;
}

.watch-band {
    width: 120px;
    height: 70px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
    z-index: -1;
}

.watch-band-top {
    border-radius: 12px 12px 0 0;
    transform: translateY(-5px);
}

.watch-band-bottom {
    border-radius: 0 0 12px 12px;
    transform: translateY(5px);
}

.watch-app-logo {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.watch-app-text {
    font-size: 14px;
    color: white;
    text-align: center;
    opacity: 0.8;
}

/* Hide mockup by default */
.watch-mockup {
    display: none;
}

/* Only show mockup if image fails to load */
.watch-mockup.fallback-visible {
    display: block;
}

@media (max-width: 768px) {
    .watch-mockup {
        width: 200px;
        height: 300px;
    }
    
    .watch-frame {
        width: 150px;
        height: 180px;
    }
}

/* Apple Watch App Section Animations */
.watch-section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.watch-section-visible {
    opacity: 1;
    transform: translateY(0);
}

.watch-feature-animate {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.watch-feature-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Watch app floating animation */
@keyframes float-watch {
    0% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
    100% { transform: translateY(0px) rotate(-5deg); }
}

.watch-app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg) rotate(-5deg);
    transition: all 0.5s ease;
    animation: float-watch 6s ease-in-out infinite;
}

.watch-app-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotate(0deg);
    animation-play-state: paused;
}

/* Responsive styles for Watch App section */
@media (max-width: 992px) {
    .watch-app-container {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .watch-app-content {
        max-width: 100%;
    }
    
    .watch-app-content h2 {
        font-size: 2.2rem;
    }
    
    .watch-app-tagline {
        font-size: 1.3rem;
    }
    
    .watch-app-image {
        margin: 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .watch-app-section {
        padding: 4rem 1.5rem;
    }
    
    .watch-app-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .watch-app-tagline {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .watch-feature p {
        font-size: 1rem;
    }
    
    .coming-soon,
    .launch-note {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .watch-app-features {
        grid-template-columns: 1fr;
    }
    
    .watch-app-content h2 {
        font-size: 1.8rem;
    }
}

/* Responsive adjustments for the watch image */
@media (max-width: 992px) {
    .real-watch-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .real-watch-image {
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .real-watch-image {
        max-width: 220px;
    }
}

/* Responsive adjustments for the consent text */
@media (max-width: 480px) {
    .gdpr-container {
        max-width: 320px;
    }
    
    .checkbox-container {
        font-size: 0.8rem;
    }
}

/* Responsive Design for Beta Form */
@media (max-width: 768px) {
    .signup-form {
        padding: 1.5rem;
        margin: 1rem;
    }

    .checkbox-group {
        padding: 1rem;
    }

    .checkbox-container {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .signup-form {
        padding: 1rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

/* Translation button styles */
.translate-button {
    display: inline-block;
    margin-right: 15px;
}

.goog-te-gadget {
    font-family: inherit !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.goog-te-gadget .goog-te-combo:hover {
    background: var(--primary-color);
    color: white;
}

/* Dark mode styles for translation */
body.dark-mode .goog-te-gadget .goog-te-combo {
    border-color: var(--primary-color);
    color: var(--text-dark);
}

body.dark-mode .goog-te-gadget .goog-te-combo:hover {
    background: var(--primary-color);
    color: white;
}

/* Media queries for form messages */
@media (max-width: 768px) {
    .success-message,
    .error-message {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .success-icon,
    .error-icon {
        font-size: 1.75rem;
        margin-top: 0;
    }
    
    .success-content h4,
    .error-content h4 {
        font-size: 1.1rem;
    }
    
    .success-content ul {
        text-align: left;
        padding-left: 1rem;
    }
    
    .form-message {
        padding: 1.25rem;
        margin-top: 0.75rem;
    }
}

@media (max-width: 480px) {
    .form-message {
        padding: 1rem;
    }
    
    .success-content h4,
    .error-content h4 {
        font-size: 1rem;
    }
    
    .success-content p,
    .error-content p {
        font-size: 0.9rem;
    }
    
    .success-content li {
        font-size: 0.9rem;
    }
}

/* Press Section */
.press-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.press-container {
    max-width: 1200px;
    margin: 0 auto;
}

.press-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
}

.press-intro {
    font-size: 1.2rem;
    color: var(--text-body-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.press-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.press-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b9d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.press-card:hover::before {
    transform: scaleX(1);
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.press-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.press-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.press-card p {
    color: var(--text-body-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.press-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.press-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.press-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.press-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.download-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.press-button:hover .download-icon {
    transform: translateY(2px);
}

.arrow {
    transition: transform 0.3s ease;
}

.press-button:hover .arrow {
    transform: translateX(5px);
}

.file-info {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    margin: 0;
}

.press-highlights {
    margin-top: 4rem;
}

.press-highlights h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 600;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-body-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Dark mode support for press section */
body.dark-mode .press-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

body.dark-mode .press-card {
    background: #333;
    color: var(--text-dark);
}

body.dark-mode .press-card h3 {
    color: var(--text-dark);
}

body.dark-mode .press-card p {
    color: var(--text-body-dark);
}

body.dark-mode .highlight-item {
    background: #333;
}

body.dark-mode .highlight-item h4 {
    color: var(--text-dark);
}

body.dark-mode .highlight-item p {
    color: var(--text-body-dark);
}

body.dark-mode .file-info {
    color: var(--text-muted-dark);
}

/* Responsive design for press section */
@media (max-width: 768px) {
    .press-section {
        padding: 3rem 1rem;
    }
    
    .press-section h2 {
        font-size: 2rem;
    }
    
    .press-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .press-resources {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .press-card {
        padding: 2rem 1.5rem;
    }
    
    .press-icon {
        font-size: 2.5rem;
    }
    
    .press-card h3 {
        font-size: 1.3rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .press-highlights h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .press-section h2 {
        font-size: 1.75rem;
    }
    
    .press-intro {
        font-size: 1rem;
    }
    
    .press-card {
        padding: 1.5rem 1rem;
    }
    
    .press-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
    
    .highlight-item h4 {
        font-size: 1.1rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.policy-section h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.policy-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--text-color);
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Dark Mode Adjustments for Legal Pages */
@media (prefers-color-scheme: dark) {
    .legal-content h1 {
        color: var(--primary-light);
    }

    .policy-section h2,
    .policy-section h3 {
        color: var(--heading-light);
    }

    .policy-section p,
    .policy-section li {
        color: var(--text-light);
    }

    .policy-section a {
        color: var(--primary-light);
    }

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

/* Responsive Adjustments for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        margin: 1rem auto;
        padding: 0 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }
}

/* Mobile Responsive Design for New Sections */
@media (max-width: 768px) {
    .gameplay-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .badges-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .gc-achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .badge-card,
    .gc-achievement-card {
        padding: 1.5rem;
    }
    
    .badge-icon,
    .gc-icon {
        font-size: 2.5rem;
    }
    
    .gameplay-section h2,
    .achievements-section h2 {
        font-size: 2rem;
    }
    
    .achievement-category h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gameplay-steps,
    .feature-highlights,
    .badges-grid,
    .gc-achievements-grid {
        gap: 1rem;
    }
    
    .step-card,
    .badge-card,
    .gc-achievement-card {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .badge-icon,
    .gc-icon {
        font-size: 2rem;
    }
    
    .gameplay-section h2,
    .achievements-section h2 {
        font-size: 1.8rem;
    }
}
