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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Dark Mode Variables */
.dark-mode {
    --text-dark: #f9fafb;
    --text-light: #d1d5db;
    --text-lighter: #9ca3af;
    --bg-white: #1f2937;
    --bg-gray: #111827;
    --bg-dark: #030712;
    --border-color: #374151;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 10000;
    transition: all 0.3s ease;
    width: 100%;
    overflow: visible;
}

.dark-mode .navbar {
    background: rgba(31, 41, 55, 0.95);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    z-index: 10001;
    width: 100%;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.theme-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    margin-left: 1rem;
    position: relative;
    z-index: 10002;
    flex-shrink: 0;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.dark-mode .theme-toggle {
    background: var(--bg-white);
    border-color: var(--border-color);
}

.theme-icon {
    transition: transform 0.3s ease;
    display: block;
}

.dark-mode .theme-icon {
    display: none;
}

.theme-toggle::after {
    content: '☀️';
    display: none;
}

.dark-mode .theme-toggle::after {
    display: block;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 10002;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.dark-mode .mobile-menu {
    background: var(--bg-white);
}

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

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu ul li {
    padding: 0.75rem 1.5rem;
}

.mobile-menu ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
}

@media (max-width: 768px) {
    .hero-slider {
        overflow: visible;
    }
}

.hero-slider-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: calc(100vh - 80px);
    min-height: 600px;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    overflow-y: auto;
    box-sizing: border-box;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.06;
    z-index: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active .hero-slide-background {
    opacity: 0.08;
}

.dark-mode .hero-slide-background {
    opacity: 0.12;
}

.dark-mode .hero-slide.active .hero-slide-background {
    opacity: 0.15;
}

.hero-slide-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
    filter: blur(40px);
}

.hero-slide-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
    filter: blur(40px);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 20px;
    animation: slideIn 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.hero-slide.active .hero-slide-content {
    animation: slideIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-slide-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.screenshots-container {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    padding: 1rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.screenshot-wrapper {
    position: relative;
    width: 240px;
    height: auto;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.screenshot-wrapper:hover {
    transform: translateY(-10px) rotateY(5deg);
    animation-play-state: paused;
}

.screenshot-offset {
    transform: translateY(40px) rotateY(-5deg);
}

.screenshot-offset:hover {
    transform: translateY(25px) rotateY(-3deg);
    animation-play-state: paused;
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 0 8px rgba(0, 0, 0, 0.05);
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 10px solid white;
    background: white;
    filter: brightness(1.02) contrast(1.05);
    transform-style: preserve-3d;
}

.screenshot-offset .screenshot {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 0 8px rgba(0, 0, 0, 0.05);
}

.screenshot-wrapper:hover .screenshot {
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.screenshot-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}

.screenshot-wrapper:hover .screenshot-shadow {
    width: 100%;
    height: 30px;
    opacity: 0.5;
}

/* Phone frame effect */
.screenshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Animation for screenshots */
@keyframes floatScreenshots {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateY(2deg);
    }
}

@keyframes floatScreenshotsOffset {
    0%, 100% {
        transform: translateY(40px) rotateY(-5deg);
    }
    50% {
        transform: translateY(25px) rotateY(-3deg);
    }
}

.screenshot-wrapper:first-child {
    animation: floatScreenshots 4s ease-in-out infinite;
}

.screenshot-offset {
    animation: floatScreenshotsOffset 4s ease-in-out infinite;
    animation-delay: 0.3s;
}

.slide-badge {
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.slide-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.slide-badge.strategy {
    background: var(--gradient-2);
}

.slide-badge.sports {
    background: var(--gradient-3);
}

.slide-badge.puzzle {
    background: var(--gradient-4);
}

.hero-slide-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.slide-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
    animation: titleFadeIn 1s ease-out 0.3s both;
}

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

.slide-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
    max-width: 600px;
    animation: descFadeIn 1s ease-out 0.5s both;
}

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

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

.feature-tag {
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1.5px solid rgba(99, 102, 241, 0.25);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: tagFadeIn 1s ease-out 0.7s both;
}

.feature-tag:nth-child(2) {
    animation-delay: 0.8s;
}

.feature-tag:nth-child(3) {
    animation-delay: 0.9s;
}

.feature-tag:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

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

.play-store-link {
    display: inline-block;
    align-self: flex-start;
    margin-top: 0.5rem;
    transition: transform 0.3s ease, filter 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.play-store-link img {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.play-store-link:hover {
    transform: translateY(-3px) scale(1.05);
}

.play-store-link:hover img {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.slider-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
    line-height: 1;
}

.dark-mode .slider-btn {
    background: rgba(31, 41, 55, 0.95);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.slider-btn:active {
    transform: scale(1.05) translateY(0);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    width: 32px;
    border-radius: 8px;
    border-color: white;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Games Section */
.games-section {
    padding: 6rem 0;
    background: var(--bg-gray);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.game-row {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.dark-mode .game-row {
    background: var(--bg-white);
}

.game-row:nth-child(1) { animation-delay: 0.1s; }
.game-row:nth-child(2) { animation-delay: 0.2s; }
.game-row:nth-child(3) { animation-delay: 0.3s; }
.game-row:nth-child(4) { animation-delay: 0.4s; }
.game-row:nth-child(5) { animation-delay: 0.5s; }

.game-row:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.game-icon-container {
    position: relative;
    flex-shrink: 0;
}

.game-icon-img {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.game-row:hover .game-icon-img {
    transform: scale(1.05);
}

.game-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.game-badge.strategy {
    background: var(--gradient-2);
}

.game-badge.sports {
    background: var(--gradient-3);
}

.game-badge.puzzle {
    background: var(--gradient-4);
}

.game-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.game-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
}

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

.game-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.separator {
    color: var(--border-color);
}

.play-store-btn {
    display: inline-block;
    transition: transform 0.3s ease;
    align-self: flex-start;
}

.play-store-btn img {
    height: 55px;
    width: auto;
}

.play-store-btn:hover {
    transform: scale(1.08);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

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

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

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-gray);
    transition: all 0.3s ease;
}

.dark-mode .value-item {
    background: var(--bg-gray);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-gray);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dark-mode .contact-item {
    background: var(--bg-white);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    flex-shrink: 0;
}

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

.contact-item:hover .contact-icon svg {
    transform: scale(1.15) rotate(5deg);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

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

.contact-details p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1.5rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-games h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-games ul {
    list-style: none;
}

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

.footer-links a,
.footer-games a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-games a:hover {
    color: var(--primary-light);
}

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

.footer-bottom p {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .theme-toggle {
        margin-left: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        position: relative;
        z-index: 10002;
        flex-shrink: 0;
    }

    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 10002;
        flex-shrink: 0;
    }

    .nav-content {
        overflow: visible;
        width: 100%;
    }

    .navbar {
        overflow: visible;
        width: 100%;
    }

    .mobile-menu {
        display: block;
    }

    .hero-slider-container {
        height: calc(100vh - 80px);
        min-height: 600px;
        max-height: 700px;
        max-width: 100vw;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .hero-slide {
        position: absolute;
        padding: 1rem 0;
        min-height: 100%;
        align-items: center;
        overflow: hidden;
        height: 100%;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .hero-slide.active {
        overflow: visible;
    }

    .hero-slide-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 0.5rem 1rem 3rem;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        position: relative;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-slide-image {
        order: 1;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        flex-shrink: 0;
        max-height: 30vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-slide-text {
        order: 2;
        width: 100%;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        max-width: 100%;
        flex-shrink: 0;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .screenshots-container {
        flex-direction: row !important;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        padding: 0.25rem 0;
        width: 100%;
        display: flex !important;
    }

    .screenshot-wrapper {
        width: 110px;
        max-width: 48%;
        flex-shrink: 0;
    }

    .screenshot-wrapper:first-child {
        margin-right: 0;
        animation: none;
    }

    .screenshot-offset {
        transform: translateY(15px) rotateY(-2deg);
        animation: none;
    }

    .screenshot-offset:hover {
        transform: translateY(12px) rotateY(-1deg);
    }

    .screenshot {
        border-width: 5px;
        width: 100%;
        height: auto;
    }

    .slide-badge {
        display: none;
    }

    .slide-title {
        font-size: 1.5rem;
        line-height: 1.15;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .slide-description {
        font-size: 0.75rem;
        line-height: 1.35;
        text-align: center;
        padding: 0;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0 0 0.5rem 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slide-features {
        justify-content: center;
        gap: 0.5rem;
        margin: 0.5rem 0;
        flex-wrap: wrap;
        width: 100%;
    }

    .feature-tag {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }

    .play-store-link {
        align-self: center;
        margin-top: 0.3rem;
    }

    .play-store-link img {
        height: 35px;
        width: auto;
    }

    .hero-slider {
        padding-bottom: 0;
    }

    .slider-controls {
        position: absolute;
        bottom: 0.75rem;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        gap: 0.75rem;
        padding: 0 0.75rem;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-dots {
        gap: 0.5rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 24px;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .game-row:hover {
        transform: translateY(-5px);
    }

    .game-icon-img {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        display: block;
    }

    .game-icon-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .game-badge {
        position: static;
        transform: none;
        margin-top: 0.75rem;
    }

    .game-features {
        grid-template-columns: 1fr;
    }

    .game-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .game-title {
        font-size: 1.5rem;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .contact-item:hover {
        transform: translateY(-5px);
    }

    .contact-icon {
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        min-height: 500px;
    }

    .hero-slide {
        padding: 1rem 0;
    }

    .hero-slider-container {
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        max-height: calc(100vh - 80px);
        max-width: 100vw;
        overflow: hidden;
    }

    .hero-slide {
        min-height: calc(100vh - 80px);
        height: calc(100vh - 80px);
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .hero-slide.active {
        height: calc(100vh - 80px);
    }

    .hero-slide-content {
        gap: 0.75rem;
        padding: 0.5rem 1rem 2.5rem;
        box-sizing: border-box;
    }

    .hero-slide-image {
        max-height: 28vh;
    }

    .screenshots-container {
        flex-direction: row !important;
        gap: 0.75rem;
        padding: 0.2rem 0;
        justify-content: center;
        display: flex !important;
    }

    .screenshot-wrapper {
        width: 100px;
        max-width: 48%;
        flex-shrink: 0;
    }

    .screenshot-wrapper:first-child {
        margin-right: 0;
        animation: none;
    }

    .screenshot-offset {
        transform: translateY(12px) rotateY(-2deg);
        animation: none;
    }

    .screenshot {
        border-width: 5px;
    }

    .slide-badge {
        display: none;
    }

    .slide-title {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }

    .slide-description {
        font-size: 0.7rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0 0 0.5rem 0;
    }

    .slide-features {
        gap: 0.4rem;
        margin: 0.5rem 0;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .feature-tag {
        font-size: 0.55rem;
        padding: 0.25rem 0.55rem;
    }

    .play-store-link {
        margin-top: 0.25rem;
    }

    .play-store-link img {
        height: 32px;
    }

    .hero-slider {
        padding-bottom: 0;
    }

    .slider-controls {
        bottom: 0.5rem;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .slider-dot {
        width: 7px;
        height: 7px;
    }

    .slider-dot.active {
        width: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

