/* GeoGuesser Hacker Website - Main Styles */

:root {
    --primary-green: #10b981;
    --secondary-green: #059669;
    --light-green: #d1fae5;
    --dark-green: #047857;
    --accent-blue: #22d3ee;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: white;
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
}

/* Header Styles - Floating & Semi-Transparent */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 40px);
    max-width: 1200px;
    transition: all 0.3s ease;
}

.nav-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo .logo-text {
    height: 60px;
    width: auto;
    border-radius: 0;
    margin-left: 4px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: white;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--dark-green));
}

/* Chrome logo rotation on buttons */
.btn-primary svg,
.btn-secondary svg,
.install-extension-btn svg {
    transition: transform 0.6s ease-in-out;
    transform: rotate(0deg);
}

.btn-primary:hover svg,
.btn-secondary:hover svg,
.install-extension-btn:hover svg {
    transform: rotate(360deg);
}

/* Ambient rotation animation - REMOVED */

/* Feedback Modal Styles */
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.feedback-modal-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    color: white;
}

.feedback-success-icon {
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

.feedback-modal-content h2 {
    color: white;
    margin-bottom: 16px;
    font-size: 28px;
}

.feedback-modal-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.discount-code-container {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.discount-code {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-green);
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin: 8px 0;
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.feedback-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 16px;
    transition: background 0.3s ease;
}

.feedback-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Screenshot Showcase Styles */
.screenshot-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(16, 185, 129, 0.4);
}

.showcase-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* Trusted Reviews Section */
.trusted-reviews-section {
    margin-top: 60px;
    padding: 40px 20px;
}

.trusted-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.reviews-double-scroll {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-scroll-container {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
    contain: layout style paint;
}

.reviews-scroll-track {
    display: flex;
    gap: 16px;
    width: fit-content;
    will-change: transform;
}

.reviews-row-1 {
    animation: scroll-reviews-left 30s linear infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
    animation-play-state: running !important;
}

.reviews-row-2 {
    animation: scroll-reviews-right 30s linear infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
    animation-play-state: running !important;
}

/* Reviews scroll continuously without pausing */

.review-image {
    height: 120px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transform: translateZ(0);
    pointer-events: none;
}

.review-image:hover {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
    border-color: rgba(16, 185, 129, 0.5);
    z-index: 10;
    position: relative;
}

@keyframes scroll-reviews-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(calc(-100% / 2), 0, 0);
    }
}

@keyframes scroll-reviews-right {
    0% {
        transform: translate3d(calc(-100% / 2), 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 768px) {
    .trusted-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .review-image {
        height: 100px;
    }
    
    .reviews-scroll-track {
        gap: 10px;
    }
    
    .reviews-double-scroll {
        gap: 12px;
    }
}

.btn-primary:active {
    background: linear-gradient(135deg, var(--dark-green), var(--secondary-green));
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
}

/* Hero Section */
.hero {
    background: transparent;
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3D Globe Canvas */
#globe-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* Animated Stars Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 33% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 25% 80%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 15% 60%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 70% 20%, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200px 200px, 250px 250px, 300px 300px;
    background-position: 0 0, 50px 50px, 100px 100px;
    animation: stars-move 120s linear infinite;
    pointer-events: none;
    opacity: 0.8;
    z-index: 0;
}

@keyframes stars-move {
    from {
        background-position: 0 0, 50px 50px, 100px 100px;
    }
    to {
        background-position: 200px 200px, 250px 250px, 400px 400px;
    }
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(102, 126, 234, 0.3));
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 25px rgba(16, 185, 129, 0.7),
        0 0 50px rgba(102, 126, 234, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(16, 185, 129, 0.6),
        0 0 30px rgba(102, 126, 234, 0.4);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.geoguessr-logo {
    height: 80px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-proof {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-proof-item {
    text-align: center;
}

.social-proof-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 4px;
}

.social-proof-label {
    font-size: 14px;
    opacity: 0.8;
}

.btn-hero {
    font-size: 18px;
    padding: 18px 36px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-trust {
    margin-top: 20px;
    opacity: 0.9;
    font-size: 15px;
}

.scroll-indicator {
    display: none;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

/* Content Sections */
.section {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.section-header p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Problem/Solution Section */
.problem-section {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.problem-solution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-side,
.solution-side {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.problem-side {
    border: 1px solid rgba(254, 226, 226, 0.3);
}

.solution-side {
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.problem-side h3,
.solution-side h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li,
.solution-list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.problem-list li:last-child,
.solution-list li:last-child {
    border-bottom: none;
}

.problem-list li {
    color: rgba(255, 255, 255, 0.9);
}

.solution-list li {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Glass Feature Cards (How It Works) */
.feature-card-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    text-align: center;
}

.feature-card-glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.feature-card-glass h3 {
    color: white;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.feature-card-glass p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.feature-icon-glass {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

/* New Feature Cards */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card-new {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
    border-color: rgba(16, 185, 129, 0.5);
}

.feature-icon-new {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.feature-card-new h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.feature-card-new p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-stat {
    display: inline-block;
    background: var(--light-green);
    color: var(--dark-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: transparent;
    color: white;
    text-align: center;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
    border-color: rgba(16, 185, 129, 0.5);
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.blog-category {
    background: var(--light-green);
    color: var(--dark-green);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-title a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-title a:hover {
    color: var(--primary-green);
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.blog-read-more:hover {
    color: var(--secondary-green);
    transform: translateX(4px);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.pricing-card .price-original {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.pricing-card .period {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.pricing-features .check {
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

/* FAQ Styles */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 0;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.faq-answer {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 48px 20px 24px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section a {
    color: var(--gray-200);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

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

/* Product Hunt Section */
.product-hunt-section {
    background: var(--gray-50);
    padding: 60px 0;
}

.product-hunt-card {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.product-hunt-card iframe {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-hunt-card iframe:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

/* Responsive Product Hunt Card */
@media (max-width: 768px) {
    .product-hunt-card iframe {
        width: 90vw;
        max-width: 400px;
        height: 320px;
    }
    
    .product-hunt-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .product-hunt-card iframe {
        width: 95vw;
        max-width: 350px;
        height: 280px;
    }
}

/* Header Product Hunt Badge */
.nav-menu li img {
    transition: transform 0.2s ease;
}

.nav-menu li img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-menu li:last-child {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .nav-menu li img {
        width: 100px;
        height: 22px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        top: 10px;
        width: calc(100% - 20px);
    }
    
    .nav-container {
        padding: 10px 20px;
        height: 60px;
        border-radius: 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo .logo-text {
        height: 36px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .geoguessr-logo {
        height: 44px;
    }
    
    .logo .logo-text {
        height: 42px;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        gap: 8px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .social-proof {
        gap: 24px;
    }
    
    .social-proof-number {
        font-size: 28px;
    }
    
    .btn-hero {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .section {
        padding: 48px 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 17px;
    }
    
    .problem-solution {
        grid-template-columns: 1fr;
    }
    
    .problem-side,
    .solution-side {
        padding: 30px;
    }
    
    .features-grid,
    .features-grid-new,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card-new {
        padding: 32px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 32px !important;
    }
    
    .cta-section p {
        font-size: 18px !important;
    }
}
