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

:root {
    --primary-color: #7A63FF;
    --secondary-color: #74E0EF;
    --accent-color: #9B8CFF;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --light-text: #ffffff;
    --gray-text: #b3b3b3;
    --card-bg: rgba(122, 99, 255, 0.1);
    --border-color: rgba(122, 99, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--darker-bg);
    overflow-x: hidden;
}

/* Global Link Styles */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

a:visited {
    color: var(--accent-color);
}

a:visited:hover {
    color: var(--secondary-color);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
}

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

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #2a1810 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.title-line {
    color: #fff;
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s ease forwards, gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(122, 99, 255, 0.5);
    position: relative;
}

.gradient-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: 10px;
    filter: blur(20px);
    z-index: -1;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(116, 224, 239, 0.3);
    letter-spacing: 1px;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b3b3b3;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(122, 99, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(122, 99, 255, 0.4);
    color: #fff !important;
}

.btn-secondary {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color) !important;
    color: var(--darker-bg) !important;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-elements {
    position: relative;
    width: 400px;
    height: 400px;
}

.game-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(122, 99, 255, 0.3);
}

.game-icon:nth-child(1) {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.game-icon:nth-child(2) {
    top: 200px;
    right: 50px;
    animation-delay: 2s;
}

.game-icon:nth-child(3) {
    bottom: 50px;
    left: 150px;
    animation-delay: 4s;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #b3b3b3;
}

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

.about-text h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #b3b3b3;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: #b3b3b3;
    font-size: 0.9rem;
}

.about-visual {
    display: grid;
    gap: 1.5rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(122, 99, 255, 0.1);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: #b3b3b3;
    font-size: 0.95rem;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: var(--darker-bg);
}

.games-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 300px;
}

/* Supermarket game card height fix */
.game-card[data-game="supermarket"] {
    min-height: 320px;
}

.game-card[data-game="supermarket"] .game-image-container {
    height: 100%;
    width: 35%;
    min-width: 280px;
}

.game-card[data-game="supermarket"] .main-image-wrapper {
    min-height: 200px;
    flex: 1;
}

/* Multiple image system for supermarket game */
.game-card[data-game="supermarket"] .game-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.game-card[data-game="supermarket"] .game-main-image.active {
    opacity: 1;
}

.game-card[data-game="supermarket"] .game-thumbnails {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 0 20px;
}

.game-card[data-game="supermarket"] .game-image-container {
    display: flex;
    flex-direction: column;
}

.game-card[data-game="supermarket"] .main-image-wrapper::before {
    content: '← Swipe →';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.game-card[data-game="supermarket"] .main-image-wrapper:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(122, 99, 255, 0.2);
}

.game-card.coming-soon {
    border: 2px dashed rgba(122, 99, 255, 0.3);
}

.game-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.game-image-container {
    width: 40%;
    min-width: 300px;
    position: relative;
    border-radius: 20px 0 0 20px;
    background: #000;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.game-image-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.game-image-container::before {
    content: '← Swipe →';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.main-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 0 0;
    flex: 1;
    min-height: 200px;
}

.game-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.game-thumbnails {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
    border-radius: 0 0 0 20px;
}

.game-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.game-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.game-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.screenshot {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.screenshot:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.screenshot.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(122, 99, 255, 0.5);
}

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

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.supermarket-bg {
    background: linear-gradient(135deg, #2E8B57 0%, #32CD32 50%, #228B22 100%);
}

.coming-soon-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.placeholder-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.placeholder-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.placeholder-content span {
    font-size: 1rem;
    opacity: 0.9;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 8s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(3) {
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

.placeholder-thumbnail {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.placeholder-thumbnail:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    background: rgba(122, 99, 255, 0.2);
}

.placeholder-thumbnail i {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.placeholder-thumbnail span {
    font-size: 0.6rem;
    color: #fff;
    text-align: center;
}

.coming-soon-badge, .development-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.development-badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(122, 99, 255, 0.3);
}

.coming-soon-badge:hover, .development-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.development-badge:hover {
    box-shadow: 0 8px 25px rgba(122, 99, 255, 0.4);
}

.coming-soon-badge.mobile, .development-badge.mobile {
    width: 100%;
    margin-top: 1rem;
}

.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(122, 99, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.game-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-info p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-features-compact {
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(122, 99, 255, 0.1);
    border-color: rgba(122, 99, 255, 0.3);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item h5 {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.feature-item span {
    color: #b3b3b3;
    font-size: 0.75rem;
    line-height: 1.2;
}

.show-more-btn {
    width: 100%;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.show-more-btn:hover {
    background: rgba(122, 99, 255, 0.1);
    border-color: rgba(122, 99, 255, 0.3);
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

.game-details-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.game-details-expanded.active {
    max-height: 300px;
}

.detail-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #b3b3b3;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 100px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

.tab-content ul {
    list-style: none;
    padding-left: 0;
}

.tab-content li {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.tab-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.7rem;
}

.tab-content li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--card-bg);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.game-downloads {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.desktop-downloads {
    padding: 10px;
    justify-content: center;
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 0 20px;
}

.desktop-downloads .store-badge {
    height: 40px;
}

.mobile-downloads {
    display: none;
}

.download-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-badge {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.download-btn.android .store-badge {
    filter: brightness(1);
}

.download-btn.ios .store-badge {
    filter: brightness(1);
}

.download-btn:hover .store-badge {
    filter: brightness(1.1);
}

.game-status {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.released {
    background: rgba(0, 255, 127, 0.2);
    color: #00ff7f;
}

.status-badge.downloads {
    background: rgba(122, 99, 255, 0.2);
    color: var(--primary-color);
}

.status-badge.in-development {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(122, 99, 255, 0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.team-member h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #b3b3b3;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #b3b3b3;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(122, 99, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #b3b3b3;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
}

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

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

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-links span {
    color: #555;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Policy Pages */
.privacy-policy,
.terms-of-use {
    padding: 120px 0 80px;
    background: var(--dark-bg);
    color: #fff;
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-header p {
    color: #888;
    font-size: 1.1rem;
}

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

.policy-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid transparent;
}

.policy-section a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(116, 224, 239, 0.3);
}

.policy-section a:visited {
    color: var(--accent-color);
}

.policy-section a:visited:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy,
    .terms-of-use {
        padding: 100px 0 60px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 1rem;
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .gradient-text::before {
        filter: blur(15px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tablet support for supermarket game */
    .game-card {
        flex-direction: column-reverse;
        min-height: auto;
        margin: 0 10px;
    }
    
    .game-card[data-game="supermarket"] {
        min-height: auto;
    }
    
    .game-card[data-game="supermarket"] .game-image-container {
        width: 100%;
        min-width: auto;
        height: auto;
        border-radius: 0 0 20px 20px;
        order: 2;
    }
    
    .game-card[data-game="supermarket"] .main-image-wrapper {
        min-height: 250px;
        max-height: 300px;
        flex: none;
        border-radius: 0;
    }
    
    .game-card[data-game="supermarket"] .game-main-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 1;
    }
    
    .game-card[data-game="supermarket"] .game-main-image.active {
        opacity: 1;
        z-index: 2;
    }
    
    .game-card[data-game="supermarket"] .game-thumbnails {
        display: flex;
        gap: 8px;
        padding: 10px;
        border-radius: 0;
    }
    
    .game-card[data-game="supermarket"] .main-image-wrapper::before {
        opacity: 0.7;
        font-size: 1rem;
    }
    
    .game-image-container {
        width: 100%;
        min-width: auto;
        border-radius: 0 0 20px 20px;
        order: 2;
    }
    
    .game-info {
        padding: 1.5rem;
        order: 1;
        border-radius: 20px 20px 0 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-elements {
        width: 300px;
        height: 300px;
    }
    
    .game-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .gradient-text::before {
        filter: blur(10px);
    }
    
    .hero-slogan {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        gap: 1.5rem;
    }
    
    .game-card {
        flex-direction: column-reverse;
        min-height: auto;
        margin: 0 10px;
    }
    
    /* Supermarket game mobile fixes */
    .game-card[data-game="supermarket"] {
        min-height: auto;
    }
    
    .game-card[data-game="supermarket"] .game-image-container {
        width: 100%;
        min-width: auto;
        height: auto;
    }
    
    .game-card[data-game="supermarket"] .main-image-wrapper {
        min-height: 180px;
        max-height: 200px;
        flex: none;
        border-radius: 0;
    }
    
    .game-card[data-game="supermarket"] .game-main-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 1;
    }
    
    .game-card[data-game="supermarket"] .game-main-image.active {
        opacity: 1;
        z-index: 2;
    }
    
    .game-card[data-game="supermarket"] .game-thumbnails {
        display: flex;
        gap: 6px;
        padding: 8px;
    }
    
    .game-card[data-game="supermarket"] .main-image-wrapper::before {
        opacity: 0.7;
        font-size: 0.8rem;
    }
    
    .game-image-container {
        width: 100%;
        min-width: auto;
        border-radius: 0 0 20px 20px;
        order: 2;
    }
    
    .main-image-wrapper {
        border-radius: 0;
        min-height: 180px;
        max-height: 200px;
    }
    
    .game-thumbnails {
        border-radius: 0;
        padding: 8px;
        gap: 6px;
    }
    
    .game-thumbnails .screenshot {
        width: 50px;
        height: 35px;
    }
    
    .desktop-downloads {
        border-radius: 0 0 20px 20px;
        padding: 8px;
    }
    
    .game-info {
        padding: 1.5rem;
        order: 1;
        border-radius: 20px 20px 0 0;
    }
    
    .desktop-downloads {
        display: none;
    }
    
    .mobile-downloads {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .mobile-downloads .store-badge {
        height: 50px;
    }
    
    .game-image-container::before,
    .game-image-container::after {
        opacity: 0.7;
    }
    
    .game-image-container:active::before,
    .game-image-container:active::after {
        opacity: 1;
    }
    
    .feature-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .feature-item {
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-item h5 {
        font-size: 0.75rem;
        margin-bottom: 0.1rem;
    }
    
    .feature-item span {
        font-size: 0.65rem;
    }
    
    .detail-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
    }
    
    .tab-btn {
        padding: 0.6rem;
        font-size: 0.75rem;
        min-width: auto;
    }
    
    .tab-content li {
        font-size: 0.8rem;
        padding-left: 0.8rem;
    }
    
    .tab-content li::before {
        font-size: 0.6rem;
    }
} 