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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

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

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.download-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 0 20px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: url('herobg.jpeg') center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Slightly darker overlay */
    z-index: 1;
}

/* Hero background overlay removed as requested */

/* Removed animated cat background to fix scroll issues */

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-title-row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.2vw, 1.25rem);
    color: white;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: clamp(1.4rem, 4.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    margin-top: clamp(0.5rem, 2vw, 1.5rem);
    padding-top: clamp(0.25rem, 1.5vw, 1rem);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
    opacity: 0.9;
    color: white;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 0.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding: 20px;
}


.hero-video {
    opacity: 1;
    transition: opacity 0.5s ease;
    position: relative;
    z-index: 5;
}

.hero-video.loaded {
    opacity: 1;
}


.hero-video {
    width: clamp(220px, 22vw, 310px);
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.hero-video:hover {
    transform: scale(1.03);
}

.iphone-video {
    display: none;
}

.hero-fallback {
    width: clamp(240px, 25vw, 350px);
    height: clamp(240px, 25vw, 350px);
    border-radius: 50%;
    object-fit: cover;
}

/* Float animation removed to prevent glitches */

/* Hero Actions Container - Smart Responsive */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.75rem, 1.3vw, 1.1rem);
    margin: clamp(1rem, 2vw, 1.75rem) 0 0;
    justify-content: flex-start;
    max-width: 360px;
    width: 100%;
    overflow: visible;
    padding: 5px 0 0;
}

/* Desktop: Tüm üçü yan yana */
@media (min-width: 1025px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

/* Tablet: AppStore + Rating yan yana, sosyal linkler alta */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-actions {
        justify-content: center;
    }
    
    .hero-instagram-cta {
        flex-basis: 100%;
        order: 3;
    }

    .hero-tiktok-cta {
        flex-basis: 100%;
        order: 4;
    }
    
    .hero-appstore-btn {
        order: 1;
    }
    
    .hero-rating {
        order: 2;
    }
}

/* Mobile: Hepsi alt alta */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Base Hero Action Item Styles */
.hero-appstore-btn,
.hero-rating,
.hero-instagram-cta,
.hero-tiktok-cta {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex: 0 1 auto;
    box-sizing: border-box;
    max-width: 360px;
    width: 100%;
    overflow: visible;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

/* App Store Button Specific */
.hero-appstore-btn {
    min-height: 64px;
    width: 100%;
    justify-content: center;
    padding: 0;
    min-height: auto;
    background: transparent;
    backdrop-filter: none;
    border: none;
}

.hero-appstore-btn:hover {
    background: transparent;
    transform: none;
}

/* Rating Stars Specific */
.hero-rating {
    padding: 0.6rem 1rem;
    min-height: 64px;
}

.hero-rating:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Instagram CTA Specific */
.hero-instagram-cta,
.hero-tiktok-cta {
    padding: 0.45rem 1.2rem;
    min-height: 40px;
    gap: 0.7rem;
    cursor: pointer;
    min-width: 200px;
}

.hero-instagram-cta:hover,
.hero-tiktok-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Rating Badge */
.rating-badge {
    gap: 1rem;
    width: 100%;
    max-width: none;
}

.rating-stars-hero {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    flex-shrink: 1;
    max-width: clamp(100px, 12vw, 130px);
}

.rating-stars {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
}

.rating-text {
    display: flex;
    flex-direction: column;
    color: white;
    flex: 1;
}

.rating-score {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
}

.rating-users {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.2;
}

/* App Store Button */
.hero-download {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5rem;
    background: none !important;
    border: none !important;
    backdrop-filter: none !important;
    align-self: flex-start;
    width: auto;
    max-width: fit-content;
    gap: 1rem;
    overflow: hidden;
    box-sizing: border-box;
    flex: 0 1 auto;
}

.hero-download:hover {
    background: none !important;
    transform: none !important;
}

.app-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-store-img {
    height: clamp(40px, 6vw, 55px);
    filter: brightness(1) contrast(1);
    transition: all 0.3s ease;
    max-width: clamp(150px, 20vw, 220px);
    width: auto;
    object-fit: contain;
}

/* Old Instagram CTA rules removed - now using .hero-instagram-cta above */

.social-icon,
.instagram-icon,
.tiktok-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 6px;
}

.instagram-text {
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
}

.hero-tiktok-cta .instagram-text {
    text-align: left;
    align-items: flex-start;
}

.cta-main {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.1;
}

.cta-sub {
    font-size: 0.68rem;
    line-height: 1.1;
    opacity: 0.85;
}


/* Hero title section */
.hero-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
}

.mobile-only {
    display: none;
}

.cta-main {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.1;
    word-wrap: break-word;
    hyphens: auto;
}

.cta-sub {
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 400;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

/* App Store Button */
.hero-buttons {
    margin-top: 2rem;
}

.app-store-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-3px);
}

.app-store-img {
    height: 60px;
    filter: brightness(1) contrast(1);
    transition: all 0.3s ease;
}

.app-store-btn:hover .app-store-img {
    filter: brightness(1.1) contrast(1.1);
}

.app-store-btn.large .app-store-img {
    height: 80px;
}

/* Screenshots Section */
.screenshots {
    padding: 40px 0 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: white;
}

/* Reviews Section */
.reviews {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.reviews-title {
    font-size: 1.5rem; /* Smaller */
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.review-slider-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    cursor: grab;
    user-select: none;
    padding: 0;
}

.review-slider-container:active {
    cursor: grabbing;
}

/* This will be replaced by the updated version above */

.review-track {
    display: flex;
    gap: 16px;
    will-change: transform;
    /* Animation will be set by JavaScript */
}

@keyframes reviewSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--total-width)));
    }
}

.review-card {
    flex: 0 0 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 1.25rem;
    margin: 0 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 220px;
}

.review-stars {
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 1.1rem;
    color: #f0f4ff;
    line-height: 1.0;
    margin-bottom: 1rem;
}

.review-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e0;
}

.slider-nav {
    display: none;
}

.slider-arrow {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}
.slider-arrow.prev {
    margin-left: -22px;
}
.slider-arrow.next {
    margin-right: -22px;
}

@media (max-width: 767px) {
    .review-card {
        flex: 0 0 calc(75% - 1rem);
        max-width: calc(75% - 1rem);
        margin: 0 0.5rem;
        min-width: calc(75vw - 40px);
    }
    
    .review-slider-container {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }
    
    .review-track {
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .review-card {
        flex: 0 0 calc(50% - 2rem);
        max-width: calc(50% - 2rem);
        margin: 0 0.5rem;
    }
    
    /* Instagram CTA - Desktop */
    .instagram-icon,
    .tiktok-icon {
        width: 28px;
        height: 28px;
    }
    
    .cta-main {
        font-size: 0.8rem;
    }
    
    .cta-sub {
        font-size: 0.7rem;
    }
}

@media (min-width: 1024px) {
    .review-card {
        flex-basis: calc(20.333% - 2rem);
        max-width: calc(20% - 2rem);
    }
}

.screenshots-header {
    text-align: center;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #f0f4ff;
    margin-top: 0.2rem;
    font-weight: 400;
}

.screenshot-container {
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 20px;
    position: relative;
    background: url('background.jpeg') center center;
    background-size: cover;
    background-attachment: fixed;
}

.screenshot-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    z-index: 1;
}

.screenshot-container::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 23px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: white;
}

.screenshot-slider {
    overflow: hidden;
    position: relative;
    margin: 0 -20px;
}

.screenshot-track {
    display: flex;
    gap: 2rem;
    animation: scroll 60s linear infinite;
    width: fit-content;
    padding: 25px 0;
    align-items: center;
    position: relative;
    z-index: 2;
}

.screenshot-item {
    flex-shrink: 0;
    position: relative;
}

.screenshot-item {
    position: relative;
    transition: transform 0.3s ease;
}

.screenshot-item img {
    border-radius: 20px;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #667eea, #764ba2, #667eea) border-box;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, opacity 0.5s ease;
    animation: borderShine 4s ease-in-out infinite;
}

/* Lazy loading placeholder */
.screenshot-item img.lazy-load {
    background-color: #f0f0f0;
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                      linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-repeat: repeat;
}

.screenshot-item img.lazy-load.loaded {
    background-image: none;
    background-color: transparent;
}

.ipad-screenshot img {
    height: 400px;
    width: auto;
}

.iphone-screenshot img {
    height: 500px;
    width: auto;
}

@keyframes borderShine {
    0%, 100% { 
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(45deg, #667eea, #764ba2) border-box;
    }
    50% { 
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(45deg, #764ba2, #667eea) border-box;
    }
}

.screenshot-item:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Features Section */
.features {
    padding: 50px 0 60px;
    background: url('background.jpeg') center center;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.features-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ddd; /* Lighter color for dark background */
    margin-bottom: 1rem;
}

.game-modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.coming-soon-card {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #f0f4ff;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* iOS Style Game Cards - Exact PlaySetupModel Colors */
.ios-game-card {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
}

/* Game-specific borders around entire card */
.fish-card {
    border: 3px solid #4FC3F7;
    box-shadow: 0 0 20px rgba(79, 195, 247, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mouse-card {
    border: 3px solid #E6D8AD;
    box-shadow: 0 0 20px rgba(230, 216, 173, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.laser-card {
    border: 3px solid #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lizard-card {
    border: 3px solid #8BC34A;
    box-shadow: 0 0 20px rgba(139, 195, 74, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.fly-card {
    border: 3px solid #B0C4DE;
    box-shadow: 0 0 20px rgba(176, 196, 222, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ladybug-card {
    border: 3px solid #D72C2C;
    box-shadow: 0 0 20px rgba(215, 44, 44, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.spider-card {
    border: 3px solid #C0844F;
    box-shadow: 0 0 20px rgba(192, 132, 79, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cockroach-card {
    border: 3px solid #A1887F;
    box-shadow: 0 0 20px rgba(161, 136, 127, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ios-game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.game-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ios-game-card:hover .game-bg {
    transform: scale(1.05);
}


/* Game Overlays with PlaySetupModel colors */
.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    color: white;
    backdrop-filter: blur(1px);
}

.fish-overlay {
    background: linear-gradient(to top, rgba(79, 195, 247, 0.75) 0%, rgba(0, 119, 194, 0.85) 100%);
}

.mouse-overlay {
    background: linear-gradient(to top, rgba(230, 216, 173, 0.75) 0%, rgba(139, 115, 85, 0.85) 100%);
}

.laser-overlay {
    background: linear-gradient(to top, rgba(255, 0, 0, 0.75) 0%, rgba(51, 51, 51, 0.85) 100%);
}

.lizard-overlay {
    background: linear-gradient(to top, rgba(139, 195, 74, 0.75) 0%, rgba(161, 136, 127, 0.85) 100%);
}

.fly-overlay {
    background: linear-gradient(to top, rgba(176, 196, 222, 0.75) 0%, rgba(112, 128, 144, 0.85) 100%);
}

.ladybug-overlay {
    background: linear-gradient(to top, rgba(215, 44, 44, 0.75) 0%, rgba(121, 85, 72, 0.85) 100%);
}

.spider-overlay {
    background: linear-gradient(to top, rgba(192, 132, 79, 0.75) 0%, rgba(58, 43, 43, 0.85) 100%);
}

.cockroach-overlay {
    background: linear-gradient(to top, rgba(161, 136, 127, 0.75) 0%, rgba(109, 76, 65, 0.85) 100%);
}

.crown-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    background: rgba(0,0,0,0.4);
    padding: 6px 8px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.game-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.game-info-left {
    flex: 1;
}

.game-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.game-emoji {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.game-name {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.game-desc {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
    margin: 0;
    line-height: 1.1;
}

.chevron {
    font-size: 1.2rem;
    opacity: 0.8;
    font-weight: bold;
    margin-left: 10px;
}

@media (min-width: 768px) {
    .ios-game-card,
    .coming-soon-card {
        height: 220px; /* ADJUST GAME CARD HEIGHT HERE - Tablet+ */
    }
    
    .game-content {
        align-items: flex-start;
    }
    
    .chevron {
        position: absolute;
        right: 0;
        top: 6px;
        margin: 0;
        font-size: 1rem;
    }
    
    .game-overlay {
        padding: 10px 14px;
    }
}

/* Download Section - Redesigned */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.download-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.download-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.download-text {
    flex: 1;
}

.download-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.download-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.app-store-btn-new {
    display: inline-block;
    transition: all 0.3s ease;
}

.app-store-btn-new:hover {
    transform: translateY(-2px);
}

.app-store-btn-new img {
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.download-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-rating {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

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

.rating-subtext {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .download-left {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    
    .download-title {
        font-size: 1.5rem;
    }
    
    .download-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rating-large {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}


/* Mobile responsive adjustments for hero elements */
@media (max-width: 768px) {
    /* Show mobile app icon */
    .mobile-only {
        display: block;
    }
    
    .hero-title-section {
        justify-content: center;
        text-align: center;
    }
    
    .hero-title-row {
        justify-content: center;
    }
    
    .hero-app-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Mobile hero actions handled by main responsive rules above */
    
    .hero-download {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        backdrop-filter: blur(10px);
    }
    
    .rating-stars-hero {
        height: 50px;
        max-width: 110px;
        margin: 0;
    }
    
    .app-store-img {
        height: 55px;
        max-width: 180px;
    }
    
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 0.95fr;
        gap: 1.5rem;
        text-align: left;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 7vw, 3rem);
        white-space: normal;
        word-wrap: break-word;
    }
    
    .hero-video {
        width: 260px;
    }
    
    .hero-fallback {
        width: 300px;
        height: 300px;
    }
    
    .hero-actions {
        margin: 1.25rem 0 0;
    }
    
    .hero-bg-cat {
        right: -20%;
        opacity: 0.08;
    }
    
    .bg-cat-image {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-brand {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid #f0f4ff;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .download-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        transition: all 0.3s ease;
        margin: 1rem 2rem;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        position: relative;
    }
    
    .hero {
        padding: 70px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        white-space: normal;
        word-wrap: break-word;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-video {
        width: 260px;
    }
    
    .hero-fallback {
        width: 230px;
        height: 230px;
    }
    
    /* Hero actions responsive handled by main rules above */
    
    /* Old hero-action-item rules removed - now using specific classes */
    
    .rating-badge {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .hero-download {
        flex-direction: column-reverse; /* Bu rating'i üste, App Store butonunu alta koyar */
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
        padding: 0.25rem !important;
        overflow: hidden;
    }

    
    .section-title {
        font-size: 2rem;
    }
    
    .game-modes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ios-game-card {
        height: 220px; /* ADJUST GAME CARD HEIGHT HERE - Mobile */
    }
    
    .game-name {
        font-size: 1rem;
    }
    
    .game-emoji {
        font-size: 1.2rem;
    }
    
    .game-desc {
        font-size: 0.75rem;
    }
    
    .game-overlay {
        padding: 6px 10px;
    }
    
    .ipad-screenshot img {
        height: 300px;
    }
    
    .iphone-screenshot img {
        height: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-bg-cat {
        display: none;
    }
}

@media (max-width: 700px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-media {
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-actions {
        align-items: center;
        max-width: 100%;
        margin: 1.5rem auto 0;
    }
}

/* Tablet (iPad) - arrange rating + App Store on first row, socials beneath */
@media (min-width: 700px) and (max-width: 1024px) {
    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 520px;
        gap: 0.9rem 1rem;
    }

    .hero-rating {
        order: 1;
        grid-column: 1;
    }

    .hero-appstore-btn {
        order: 2;
        grid-column: 2;
    }

    .hero-tiktok-cta {
        order: 3;
        grid-column: 1 / -1;
    }

    .hero-instagram-cta {
        order: 4;
        grid-column: 1 / -1;
    }
}

/* iPad Mini / small tablets: tighten screenshot box spacing */
@media (min-width: 700px) and (max-width: 820px) {
    .screenshot-container {
        height: 360px;
        padding: 10px 0 20px;
    }

    .screenshot-track {
        padding: 10px 0 15px;
    }

    .ipad-screenshot img {
        height: 320px;
    }

    .game-modes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Swap to iPhone video only on smaller screens */
@media (max-width: 700px), (max-height: 700px) {
    .ipad-video {
        display: none;
    }

    .iphone-video {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    
    /* Hero actions responsive handled by main rules above */
    
    /* Mobile specific styles for new hero classes */
    .hero-appstore-btn,
    .hero-rating,
    .hero-instagram-cta,
    .hero-tiktok-cta {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .rating-stars-hero {
        height: 45px;
        max-width: 105px;
        margin: 0; /* Mobilde margin kaldır çünkü column-reverse düzeninde */
    }
    
    .app-store-img {
        height: 45px;
        max-width: 140px;
    }
    
    /* Old hero-action-item rules removed - now using specific classes */
    
    .hero-instagram-cta,
    .hero-tiktok-cta {
        min-height: 36px;
        padding: 0.35rem 0.6rem;
    }
    
    .cta-main {
        font-size: 0.68rem;
        line-height: 1.1;
    }
    
    .cta-sub {
        font-size: 0.58rem;
        line-height: 1.1;
    }
    
    
    .nav-title {
        font-size: 1.1rem;
    }
    
    .nav-logo {
        width: 35px;
        height: 35px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        white-space: normal;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
    }
    
    .hero-video {
        width: 240px;
    }
    
    .hero-fallback {
        width: 200px;
        height: 200px;
    }
    
    .rating-stars {
        height: 50px;
    }
    
    .rating-users {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .ios-game-card {
        height: 220px; /* ADJUST GAME CARD HEIGHT HERE - Small Mobile */
        margin: 0 8px;
    }
    
    .game-modes-grid {
        padding: 0 12px;
    }
    
    .game-name {
        font-size: 1rem;
    }
    
    .game-emoji {
        font-size: 1.2rem;
    }
    
    .screenshot-container {
        height: 400px;
    }
    
    .game-overlay {
        padding: 5px 8px;
    }
    
    .ipad-screenshot img {
        height: 250px;
    }
    
    .iphone-screenshot img {
        height: 350px;
    }
    
    .app-store-img {
        height: 50px;
    }
    
    .app-store-btn.large .app-store-img {
        height: 60px;
    }
    
    /* Social CTA - Mobile */
    .hero-instagram-cta,
    .hero-tiktok-cta {
        gap: 0.5rem;
        min-height: 38px;
        padding: 0.4rem 0.7rem;
    }
    
    .instagram-icon,
    .tiktok-icon {
        width: 26px;
        height: 26px;
    }
    
    .cta-main {
        font-size: 0.72rem;
    }
    
    .cta-sub {
        font-size: 0.62rem;
    }
}

/* Prevent screenshot duplication */
.screenshot-track {
    animation-play-state: running;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
.screenshot-slider::-webkit-scrollbar {
    display: none;
}

.screenshot-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Accessibility */
.nav-link:focus, .download-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Final Polish */
::selection {
    background: rgba(102, 126, 234, 0.8);
    color: white;
}
