      /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2E86C1;
            --background: #F8F9F9;
            --text: #2C3E50;
            --accent: #27AE60;
            --white: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }
        




/* ===== Dark Theme Overrides (added) ===== */
:root {
  --primary: #5B8CFF;      /* soft azure */
  --background: #0b0d12;   /* near-black */
  --text: #E6EAF2;         /* light text */
  --accent: #38D39F;       /* green accent that pops on dark */
  --white: #0f131a;        /* repurpose "white" to dark surface for components that use var(--white) */
}

body {
	font-family: 'Roboto', sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: radial-gradient(120% 120% at 0% 0%, #0b0d12 0%, #0b0d12 40%, #121624 100%),
              linear-gradient(135deg, #101421 0%, #0b0d12 100%);
  background-attachment: fixed;
  background-size: cover;
  animation: gradientShift 25s ease infinite;
  color: var(--text);
}

body::before,
body::after {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(91,140,255,0.10) 0%, transparent 22%),
    radial-gradient(circle at 40% 60%, rgba(255,255,255,0.05) 0%, transparent 14%);
  background-size: 400% 400%;
  animation: particleMove 36s linear infinite;
}

/* Animated Gradient Overlay */
body::before {
  background: linear-gradient(
    135deg, 
    rgba(16,20,33,0.75) 0%, 
    rgba(28,34,56,0.6) 35%, 
    rgba(16,20,33,0.85) 100%
  );
  background-size: 300% 300%;
  animation: gradientPulse 20s ease infinite;
  mix-blend-mode: normal;
}

/* Particle Effect */
body::after {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(91,140,255,0.10) 0%, transparent 22%),
    radial-gradient(circle at 40% 60%, rgba(255,255,255,0.05) 0%, transparent 14%);
  background-size: 400% 400%;
  animation: particleMove 36s linear infinite;
}



/* Animations */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes gradientPulse {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

@keyframes particleMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

@keyframes float {
  0% { 
    transform: translate(0, 0) rotate(0deg); 
  }
  25% { 
    transform: translate(20px, 50px) rotate(90deg); 
  }
  50% { 
    transform: translate(40px, 0) rotate(180deg); 
  }
  75% { 
    transform: translate(10px, -30px) rotate(270deg); 
  }
  100% { 
    transform: translate(0, 0) rotate(360deg); 
  }
}
        h1, h2, h3, h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1.5rem;
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 4px;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            background-color: #2573a9;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .btn.accent {
            background-color: var(--accent);
        }
        
        .btn.accent:hover {
            background-color: #219653;
        }
        
        /* Header Styles */
        header {
  background-color: #0b0b0f; /* deep black */
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
        
        /* Modificări pentru bara de navigare */
        .navbar {
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | center links | socials */
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 0;
}
        
        /* Adaugă container pentru link-uri + social media */
        .nav-container {
  display: flex;
  justify-content: center;
}
        
        /* Stiluri pentru butoanele de social media */
        .social-icons {
            display: flex;
            margin-left: 1.5rem;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f0f2f5;
            color: var(--text);
            margin-left: 0.8rem;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* Responsive Design - Modificări */
        @media (max-width: 992px) {
            /* ... (conținut existent) ... */
        }
        
        @media (max-width: 768px) {
            .navbar {
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | center links | socials */
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 0;
}
            
            .logo {
                margin-bottom: 1.5rem;
            }
            
            .nav-container {
                flex-direction: column;
                width: 100%;
            }
            
            .nav-links {
                justify-content: center;
                margin-bottom: 1.5rem;
            }
            
            .social-icons {
                margin-left: 0;
            }
            
            .social-icons a {
                margin: 0 0.8rem;
            }
        }
        
        @media (max-width: 576px) {
            /* ... (conținut existent) ... */
        }
        
        .logo {
            font-family: 'Inter', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--text);
            font-weight: 500;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section with Video Background */
        .hero {
            position: relative;
            padding: 6rem 0 4rem;
            text-align: center;
            height: 80vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 2rem;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--white);
        }
        
        .hero p {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            margin-bottom: 3rem;
        }
        
        /* Portfolio Grid */
        .portfolio {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        
        .game-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        }
        
        .game-image {
            height: 200px;
            overflow: hidden;
        }
        
        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .game-card:hover .game-image img {
            transform: scale(1.05);
        }
        
        .game-content {
            padding: 1.5rem;
        }
        
        .game-content h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }
        
        .platforms {
            display: flex;
            margin-top: 1rem;
        }
        
        .platform {
            font-size: 0.85rem;
            padding: 0.3rem 0.8rem;
            background: rgba(46, 134, 193, 0.1);
            color: var(--primary);
            border-radius: 20px;
            margin-right: 0.5rem;
        }
        
        .platform.android {
            background: rgba(39, 174, 96, 0.1);
            color: var(--accent);
        }
        
        /* Footer */
        footer {
            background: var(--white);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding: 0.8rem 0;
            text-align: center;
            margin-top: 3rem;
        }
        
        footer p {
            color: #7b8a9a;
            margin-bottom: 0;
            font-size: 0.95rem;
        }
        
        /* Games Page Specific */
        .games-page {
            padding: 5rem 0 3rem;
        }
        
        .filter-bar {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            background: transparent;
            border: 1px solid #d1d8e0;
            padding: 0.6rem 1.5rem;
            margin: 0 0.5rem 1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        
        .games-carousel {
            position: relative;
            padding: 0 2rem;
        }
        
        .carousel-container {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 1rem 0;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
        }
        
        .carousel-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        .carousel-game {
            flex: 0 0 auto;
            width: 280px;
            margin-right: 2rem;
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .carousel-game:last-child {
            margin-right: 0;
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            cursor: pointer;
            z-index: 10;
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .carousel-nav:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-nav.prev {
            left: 0;
        }
        
        .carousel-nav.next {
            right: 0;
        }
        
        /* Individual Game Page */
        .game-detail {
            padding: 5rem 0 3rem;
        }
        
        .game-header {
  background-color: #0b0b0f; /* deep black */
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
        
        .game-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        .trailer-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
        }
        
        .trailer-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .screenshots {
            margin-bottom: 3rem;
            position: relative;
        }
        
        .screenshot-carousel {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
            padding: 1rem 0;
            position: relative;
        }
        
        .screenshot-carousel::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        .screenshot-item {
            flex: 0 0 auto;
            width: 280px;
            height: 180px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-right: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .screenshot-item:last-child {
            margin-right: 0;
        }
        
        .screenshot-item:hover {
            transform: scale(1.03);
        }
        
        .screenshot-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            cursor: pointer;
            z-index: 10;
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .carousel-arrow:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-arrow.prev {
            left: -20px;
        }
        
        .carousel-arrow.next {
            right: -20px;
        }
        
        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .lightbox-close:hover {
            color: var(--primary);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .lightbox-prev {
            left: 20px;
        }
        
        .lightbox-next {
            right: 20px;
        }
        
        /* Download Section */
        .download-section {
            background: var(--white);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        
        .download-buttons {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        
        .download-btn {
            display: flex;
            align-items: center;
            padding: 0.6rem 1rem;
            background: var(--white);
            border: 1px solid #e0e6ed;
            border-radius: 8px;
            transition: var(--transition);
            flex: none;
            width: auto;
        }
        
        .download-btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }
        
        .download-btn.android:hover {
            border-color: var(--accent);
        }
        
        .download-icon {
            font-size: 1.4rem;
            margin-right: 0.6rem;
            color: var(--primary);
        }
        
        .download-btn.android .download-icon {
            color: var(--accent);
        }
        
        .download-text {
            display: flex;
            flex-direction: column;
        }		
        
        .download-text h3 {
            margin-bottom: 0;
            font-size: 0.95rem;
            line-height: 1.2;
        }
        
        .download-text p {
            margin-bottom: 0;
            font-size: 0.75rem;
            color: #7b8a9a;
        }
        
        /* Privacy Policy */
        .privacy-policy {
            padding: 3rem 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .privacy-content {
            background: var(--white);
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            line-height: 1.8;
        }
        
        .privacy-content h2 {
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .privacy-content h3 {
            margin: 2rem 0 1rem;
            color: var(--text);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | center links | socials */
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 0;
}
            
            .logo {
                margin-bottom: 1rem;
            }
            
            .nav-links {
                justify-content: center;
            }
            
            .nav-links li {
                margin: 0 1rem;
            }
            
            .hero {
                padding: 4rem 0 3rem;
                height: 70vh;
                min-height: 500px;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
                padding: 0 1rem;
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .carousel-game {
                width: 250px;
            }
            
            .download-btn {
                min-width: 100%;
            }
            
            .carousel-arrow {
                width: 35px;
                height: 35px;
            }
            
            .carousel-arrow.prev {
                left: -15px;
            }
            
            .carousel-arrow.next {
                right: -15px;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 1.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .nav-links li {
                margin: 0 0.7rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .carousel-container {
                padding: 0.5rem 0;
            }
            
            .carousel-game {
                width: 220px;
                margin-right: 1.5rem;
            }
            
            .screenshot-item {
                width: 220px;
                height: 150px;
            }
            
            .download-buttons {
                flex-direction: column;
            }
            
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
        }
		
				/* Rating Icons Styles */
        .ratings-container {
            display: flex;
            gap: 1.5rem;
            margin: 2rem 0;
            justify-content: flex-start; /* Align to left */
            flex-wrap: wrap;
        }
		
        .rating-icon {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: #f0f2f5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .rating-icon img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
        
        .rating-icon:hover {
            transform: translateY(-5px);
            background: #e0e6ed;
        }
        
        .rating-tooltip {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--text);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
        }
        
        .rating-icon:hover .rating-tooltip {
            opacity: 1;
            bottom: -35px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .rating-icon {
                width: 50px;
                height: 50px;
            }
        }
		/* Add new styles for the logo */
        .logo img {
            height: 50px; /* Adjust based on your logo size */
        }
        
        
        
        /* Make game cards clickable */
        .game-card {
            cursor: pointer;
            position: relative;
        }
        
        .game-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
        }
		
    /* Latest Game Section - Updated for larger video */
    .latest-game {
        background-color: var(--white);
        padding: 5rem 0;
        position: relative;
    }
    
    .game-highlight {
        display: flex;
        flex-direction: column; /* Stack vertically */
        gap: 2rem;
    }
    
    .game-video {
        width: 100%; /* Full width */
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* Keep everything else exactly as before */
    .game-details {
        /* Same as before */
    }
	
	.game-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.game-link:hover {
    color: inherit;
}

/* ===== Page Banner (reutilizabil) ===== */
.page-banner {
  position: relative;
  height: clamp(200px, 30vh, 420px); /* ~30% din înălțimea ecranului */
  overflow: hidden;
  isolation: isolate; /* pentru overlay corect */
}

.page-banner .banner-slide { 
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 800ms ease;
}

.page-banner .banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
  will-change: opacity;
}

.page-banner .banner-slide.is-active { opacity: 1; }

.page-banner .banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* mic “cinematic look” + ușor zoom ca să evite marginile la resize */
  filter: brightness(0.55) saturate(1.05);
  transform: scale(1.06);
}

/* overlay peste imagini, pentru lizibilitate titlu */
.page-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 15%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  pointer-events: none;
  z-index: 1;
}

.page-banner .banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical centrat */
  align-items: center;       /* orizontal centrat */
  text-align: center;        /* textul din interior centrat */
  gap: 0.5rem;
  padding-inline: 1rem;
}


/* dacă ai deja .container cu max-width în site, îl poți păstra; altfel: */
.page-banner .container {
  max-width: 1100px;
  margin-inline: auto;
}

.page-banner .banner-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(28px, 8vw, 72px);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.page-banner .banner-subtitle {
  color: #ffffffd9;
  font-size: clamp(14px, 2.6vw, 18px);
}

/* breadcrumbs simple */
.breadcrumbs {
  display: flex;
  justify-content: center;   /* centru pe orizontală */
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: #ffffffcc;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  border-bottom-color: #ffffffcc;
  outline: none;
}

/* opțional: mică umbră între banner și conținutul paginii */
.page-banner + .page-container,
.page-banner + main {
  box-shadow: 0 -10px 24px -10px rgba(0,0,0,0.15) inset;
}


/* Navbar alignment + colors for dark theme */
.logo { color: #fff; }
.logo span { color: var(--primary); }

.nav-links { display: flex; list-style: none; justify-self: center; align-items: center; }
.nav-links a { color: #d9e1ee; }
.nav-links a:hover { color: #ffffff; }
.nav-links a::after { background-color: var(--primary); }

.social-icons { justify-self: end; }
.social-icons a { background: rgba(255,255,255,0.08); color: #e0e6f1; }
.social-icons a:hover { background: var(--primary); color: #fff; }

/* Container full width dar cu padding simetric */
header .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 24px;   /* spațiu la stânga și dreapta */
}

/* Surfaces and text adjustments for dark theme */
.game-card, .download-section, .privacy-content, footer, .carousel-game {
  color: var(--text);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}
footer { background: #0b0b0f; border-top: 1px solid rgba(255,255,255,0.06); }

@media (max-width: 768px) {
  .navbar { grid-template-columns: 1fr; }
  .logo { justify-self: start; }
  .nav-links { justify-self: center; margin: 0.25rem 0 0.5rem; }
  .social-icons { justify-self: end; }
}


/* === Center only the pages menu at the exact viewport center === */
.navbar { position: relative; }

/* Absolutely center the nav container without affecting logo/socials */
.nav-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  display: flex;
  align-items: center;
}

/* Keep menu items in a row and centered inside their container */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

/* Mobile: drop absolute centering to avoid overlap; keep menu centered */
@media (max-width: 768px) {
  .nav-container {
    position: static;
    transform: none;
  }
}



/* === Overrides: Pure black navbar & footer === */
header {
  background: #000000 !important;
  background-image: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar { background: transparent !important; }

footer {
  background: #000000 !important;
  background-image: none !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #E6EAF2;
}

/* layout principal */
.media-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 20px;
  align-items: flex-start;
}

/* video stânga */
.hero-left video {
  width: 100%;
  border-radius: 10px;
  display: block;
  background: #000;
}
.hero-left h2 { margin: 10px 0 5px; }
.hero-left p { margin: 0; opacity: 0.8; }

/* carusel dreapta */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.media-card {
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s;
}
.media-card img {
  width: 100%;
  display: block;
}
.media-card span {
  text-align: center;
  padding: 6px;
  background: #111;
  color: #fff;
  font-size: 14px;
}
.media-card:hover { border-color: #666; }
.media-card.active { border-color: #007bff; }

/* responsive mobile */
@media (max-width: 768px) {
  .media-hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    order: 2;
  }
}


