
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

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

        body {
            font-family: 'Rajdhani', sans-serif;
            background: #000;
            overflow-x: hidden;
        }

        .ceo-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            overflow: hidden;
        }

        .ceo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(139, 0, 0, 0.08) 0%, transparent 50%);
            animation: backgroundPulse 8s ease-in-out infinite;
        }

        @keyframes backgroundPulse {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 0.7;
            }
        }

        .ceo-container {
            position: relative;
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
            z-index: 2;
        }

        .ceo-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-frame {
            position: relative;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: linear-gradient(45deg, #8b0000, #dc143c, #8b0000);
            padding: 5px;
            box-shadow:
                0 0 50px rgba(139, 0, 0, 0.6),
                0 0 100px rgba(220, 20, 60, 0.4),
                inset 0 0 50px rgba(255, 255, 255, 0.1);
        }

        .ceo-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            object-position: top;
            box-sizing: border-box;
            transition: all 0.5s ease;
        }

        .ceo-image:hover {
            transform: scale(1.05);
            box-shadow: 0 0 80px rgba(220, 20, 60, 0.8);
        }

        .verified-badge {
            position: absolute;
            bottom: 15px;
            right: 15px;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 0 30px rgba(220, 20, 60, 0.8),
                0 0 60px rgba(139, 0, 0, 0.6),
                inset 0 0 20px rgba(255, 255, 255, 0);
            animation: pulse 2s ease-in-out infinite;
            overflow: hidden;
        }

        .verified-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.3), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .verified-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .verified-badge i {
            color: #fff;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 2px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .verified-text {
            color: #fff;
            font-size: 8px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
        }

        .ceo-info {
            color: #fff;
            text-align: left;
        }

        .ceo-title {
            font-family: 'Orbitron', monospace;
            font-size: 1.2rem;
            color: #dc143c;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            animation: slideInLeft 1s ease-out;
            text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
        }

        .ceo-name {
            font-family: 'Orbitron', monospace;
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(45deg, #8b0000, #dc143c, #8b0000);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite, slideInRight 1s ease-out;
            text-shadow: 0 0 50px rgba(139, 0, 0, 0.5);
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        @keyframes gradientShift {

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

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes slideInLeft {
            0% {
                transform: translateX(-100px);
                opacity: 0;
            }

            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            0% {
                transform: translateX(100px);
                opacity: 0;
            }

            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .ceo-description {
            font-size: 1.3rem;
            color: #ccc;
            margin-bottom: 2rem;
            line-height: 1.6;
            animation: fadeInUp 1.5s ease-out;
        }

        @keyframes fadeInUp {
            0% {
                transform: translateY(50px);
                opacity: 0;
            }

            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 2s ease-out;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #333, #555);
            border-radius: 15px;
            color: #fff;
            text-decoration: none;
            font-size: 24px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
            border-color: #dc143c;
        }

        .social-link.twitter:hover {
            background: linear-gradient(45deg, #1da1f2, #0d8bd9);
            box-shadow: 0 10px 30px rgba(29, 161, 242, 0.5);
        }

        .social-link.linkedin:hover {
            background: linear-gradient(45deg, #0077b5, #005885);
            box-shadow: 0 10px 30px rgba(0, 119, 181, 0.5);
        }

        .social-link.instagram:hover {
            background: linear-gradient(45deg, #e4405f, #833ab4, #fcb045);
            box-shadow: 0 10px 30px rgba(228, 64, 95, 0.5);
        }

        .social-link.github:hover {
            background: linear-gradient(45deg, #333, #666);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #dc143c;
            border-radius: 50%;
            animation: particleFloat 8s linear infinite;
        }

        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            top: 60%;
            left: 20%;
            animation-delay: 2s;
        }

        .particle:nth-child(3) {
            top: 30%;
            right: 15%;
            animation-delay: 4s;
        }

        .particle:nth-child(4) {
            bottom: 40%;
            right: 25%;
            animation-delay: 6s;
        }

        .particle:nth-child(5) {
            bottom: 20%;
            left: 30%;
            animation-delay: 1s;
        }

        @keyframes particleFloat {

            0%,
            100% {
                transform: translateY(0px) scale(1);
                opacity: 0.3;
            }

            50% {
                transform: translateY(-50px) scale(1.5);
                opacity: 1;
            }
        }

        .glow-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b0000, #dc143c, #8b0000, transparent);
            animation: glowLine 4s ease-in-out infinite;
        }

        .glow-line.top {
            top: 10%;
            left: 0;
            right: 0;
        }

        .glow-line.bottom {
            bottom: 10%;
            left: 0;
            right: 0;
            animation-delay: 2s;
        }

        @keyframes glowLine {

            0%,
            100% {
                opacity: 0.3;
                transform: scaleX(0.5);
            }

            50% {
                opacity: 1;
                transform: scaleX(1);
            }
        }

        @media (max-width: 768px) {
            .ceo-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .image-frame {
                width: 250px;
                height: 250px;
            }

            .ceo-name {
                font-size: 2.5rem;
            }

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

            .verified-badge {
                width: 60px;
                height: 60px;
            }

            .verified-badge i {
                font-size: 16px;
            }

            .verified-text {
                font-size: 6px;
            }
        }
    

    
        /* Add these new styles for the gradients above and below the CEO section */
        .ceo-gradient-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to bottom, #0a0a0a, rgba(0, 0, 0, 0));
            z-index: 1;
        }

        .ceo-gradient-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to top, #0a0a0a, rgba(0, 0, 0, 0));
            z-index: 1;
        }

        /* Adjust z-index for decorative elements */
        .decorative-elements {
            z-index: 0;
            /* Lower than gradients */
        }

        .ceo-container {
            z-index: 2;
            /* Higher than gradients */
        }
    

    
        .dots-container {
            display: flex;
            justify-content: center;
        }
        
        .dot-btn {
            background: currentColor;
            outline: none;
            border: none;
            border-radius: 1rem;
            width: 15px;
            height: 15px;
            display: inline-block;
            margin: 0 8px;
            transition: width 0.3s, height 0.3s, background 0.3s;
            cursor: pointer;
            color: #111;
        }
        
        .dot-btn.active {
            width: 50px;
            height: 15px;
            color: #222;
        }
        
        .explanation {
            max-width: 600px;
            margin: 2rem auto;
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .benefits {
            background: #f0f8ff;
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        
        .benefits ul {
            padding-left: 1.5rem;
        }
        
        .benefits li {
            margin-bottom: 0.5rem;
        }
        
        .comparison {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
        }
        
        .before, .after {
            flex: 1;
            padding: 1rem;
            border-radius: 8px;
        }
        
        .before {
            background: #fff8f8;
            border: 1px dashed #dc143c;
        }
        
        .after {
            background: #f8fff8;
            border: 1px dashed #2e8b57;
        }
        
        pre {
            background: #2d2d2d;
            color: #f8f8f2;
            padding: 1rem;
            border-radius: 5px;
            overflow-x: auto;
            font-size: 14px;
        }
        
        .code-title {
            font-weight: bold;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .red-dot {
            color: #dc143c;
        }
    

    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        /* Gradient Background with Animation */
        .gradient-bg {
            background: linear-gradient(45deg, #3a0000 0%, #5a0000 25%, #8b0000 50%, #5a0000 75%, #3a0000 100%);
            background-size: 200% 200%;
            animation: gradientFlow 10s ease infinite;
        }

        @keyframes gradientFlow {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .hero-section {
            display: grid;
            grid-template-columns: 1fr auto;
            position: relative;
            overflow: hidden;
        }
        
        .hero-image {
            position: relative;
            height: 600px;
            background-image: url('./img/copertina1.png');
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease-out;
            animation: heroZoom 1.5s ease-out forwards;
        }
        .hero-image2 {
            position: relative;
            height: 600px;
            background-image: url('https://queststudiogames.com/img/copertina5.png');
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease-out;
            animation: heroZoom 1.5s ease-out forwards;
        }
        .hero-image3 {
            position: relative;
            height: 600px;
            background-image: url('https://queststudiogames.com/img/WEB/4.png');
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease-out;
            animation: heroZoom 1.5s ease-out forwards;
        }

        @keyframes heroZoom {
            from {
                transform: scale(1.1);
            }

            to {
                transform: scale(1);
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            opacity: 0;
            animation: fadeIn 1s ease 0.5s forwards;
        }

        .gta-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -80%);
            width: 300px;
        }

        .trailer-button {
            position: absolute;
            top: 40%;
            right: 10%;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .trailer-button:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .release-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 1rem;
            transform: translateY(20px);
            animation: slideUp 0.8s ease 0.8s forwards;
        }

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

        .vi-logo {
            font-size: 3rem;
            font-weight: bold;
            letter-spacing: 0.5rem;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            animation: glowPulse 2s infinite alternate;
        }

        @keyframes glowPulse {
            from {
                text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
            }

            to {
                text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
            }
        }

        .container-panel {
            width: 400px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 2rem;
            animation: slideInRight 0.8s ease-out forwards;
        }

        .info-panel {
            background-color: black;
            color: white;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 400px;
            transform: translateX(100%);
            animation: slideInRight 0.8s ease-out 0.3s forwards;
        }

        @keyframes slideInRight {
            to {
                transform: translateX(0);
            }
        }

        /* Newswire Section */
        .newswire-section {
            background-color: #0a0a0a;
            color: white;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .newswire-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .newswire-section:hover::before {
            opacity: 1;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-card {
            border-radius: 0.5rem;
            overflow: hidden;
            border: 1px solid #333;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            background-color: black;
        }

        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .news-card:hover::before {
            opacity: 1;
        }

        .news-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .news-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .news-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .news-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: #666;
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .news-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: brightness(0.9);
        }

        .news-card:hover .news-image {
            transform: scale(1.08);
            filter: brightness(1.1);
        }

        .news-content {
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.8));
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-content {
            transform: translateY(-5px);
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
            color: #999;
        }

        .news-title {
            font-size: 1.25rem;
            font-weight: bold;
            line-height: 1.4;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .news-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #8b0000;
            transition: width 0.3s ease;
        }

        .news-card:hover .news-title::after {
            width: 50px;
        }

        /* Featured Games Section */
        .featured-games {
            background-color: #0a0a0a;
            color: white;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .featured-games::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(10, 10, 10, 0.61) 90%);
            pointer-events: none;
        }

        .featured-hero {
            width: 100%;
            height: 340px;
            background-image: url('https://queststudiogames.com/img/NARCOS_SITE.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 1rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .featured-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        .featured-hero:hover {
            transform: scale(1.02) translateY(0);
        }

        .featured-hero:hover::before {
            opacity: 1;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .game-card {
            aspect-ratio: 16/9;
            background-size: cover;
            background-position: center;
            border-radius: 0.5rem;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            opacity: 0;
            transform: scale(0.9);
            animation: scaleIn 0.6s ease forwards;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        .game-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .game-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .game-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .game-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .game-card:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(139, 0, 0, 0.3);
        }

        .game-card:hover::before {
            opacity: 1;
        }

        /* Newsletter Section */
        .newsletter-section {
            background-color: #111;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Screenshot%202025-05-28%20at%2018.59.20-3FV7rS1FQAYO08leGrDXnF4sAIV0yc.png');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
            animation: slowPan 30s infinite alternate ease-in-out;
        }

        @keyframes slowPan {
            from {
                transform: scale(1) translate(0, 0);
            }

            to {
                transform: scale(1.1) translate(-2%, -2%);
            }
        }

        .newsletter-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

        .subscribe-btn {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 1rem 2rem;
            border-radius: 2rem;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .subscribe-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: -1;
        }

        .subscribe-btn:hover {
            color: black;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }

        .subscribe-btn:hover::before {
            transform: translateX(100%);
        }

        /* Footer Styles */
        footer {
            position: relative;
            background-color: var(--black);
        }

        .footer-top {
            padding: 100px 0 50px;
        }

        .footer-grid {
            display: flex;
            gap: 30px;
            justify-items: start;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

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

        .footer-description {
            color: var(--text-secondary);
            font-size: 14px;
            max-width: 300px;
        }

        .footer-nav {
            display: flex;
            gap: 100px;
            padding-left: 0;
            margin-left: -10px;
            align-items: flex-start;
            justify-content: flex-start;
        }

        .footer-nav-group h3 {
            font-family: var(--font-secondary);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
        }

        .footer-nav-group h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--darkred);
        }

        .footer-nav-group ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-nav-group a {
            font-size: 12px;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .footer-nav-group a:hover {
            color: var(--text-color);
            padding-left: 3px;
        }

        .footer-bottom {
            padding: 30px 0;
        }

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

        .footer-info {
            display: flex;
            gap: 20px;
        }

        .company-name,
        .company-location {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .footer-social {
            display: flex;
            gap: 5px;
        }

        .footer-social a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .footer-social a:hover {
            background-color: var(--darkred);
            transform: translateY(-3px);
        }

        .footer-copyright {
            flex: 0 0 100%;
            text-align: center;
            margin-top: 30px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* Footer Extra */

        footer {
            background-color: #000;
            padding: 60px 0 20px;
            border-top: 1px solid #222;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            padding-bottom: 30px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-social {
            display: flex;
            gap: 5px;
        }

        .footer-social a {
            font-size: 1.2rem;
        }

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

        .footer-logo h3 {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .home-mobile,
        .products-mobile,
        .news-mobile{
            display: none;
        }

        .home-desktop,
        .products-desktop,
        .news-desktop{
            display: block;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            padding: 2rem;
            transform: translateX(-100%);
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .mobile-menu.active {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(0);
        }

        .mobile-menu a {
            color: white;
            font-size: 1.5rem;
            margin: 1rem 0;
            text-decoration: none;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

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

        .mobile-menu a:nth-child(2) {
            transition-delay: 0.1s;
        }

        .mobile-menu a:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-menu a:nth-child(4) {
            transition-delay: 0.3s;
        }

        .mobile-menu a:nth-child(5) {
            transition-delay: 0.4s;
        }

        .mobile-menu a:nth-child(6) {
            transition-delay: 0.5s;
        }

        .mobile-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #8b0000;
            transition: width 0.3s ease;
        }

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

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

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

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        /* Cursor trail effect */
        .cursor-trail {
            position: fixed;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(139, 0, 0, 0.5);
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            mix-blend-mode: screen;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .scroll-indicator.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-indicator:hover {
            background-color: rgba(139, 0, 0, 0.8);
        }

        /* Section reveal animation */
        .reveal-section {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-section.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-section {
                grid-template-columns: 1fr auto;
            }

            .hero-slides-container {
                height: 300px;
            }

            .hero-slide:nth-child(1) {
                background-size: contain;
                background-repeat: no-repeat;
            }   
            .hero-slide:nth-child(2) {
                background-size: contain;
                background-repeat: no-repeat;
            }  
            .hero-slide:nth-child(3) {
                background-size: contain;
                background-repeat: no-repeat;
            } 

            .info-panel {
                width: 350px;
            }

            .news-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                grid-template-columns: 1fr;
            } 

            .info-panel {
                width: 100%;
                animation: fadeIn 0.8s ease 0.3s forwards;
                transform: translateX(0);
                opacity: 0;
            }

            .hero-image {
                height: 400px;
            }

            .gta-logo {
                width: 200px;
            }

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

            .news-grid {
                grid-template-columns: 1fr;
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .trailer-button {
                position: static;
                margin: 1rem 0;
            }

            .newsletter-content {
                padding: 0 1rem;
            }

            .footer-nav {
                display: flex;
                flex-direction: column;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-info {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .games-grid {
                grid-template-columns: 1fr;
            }

            .hero-image {
                height: 300px;
            }

            .news-card {
                margin: 0 -1rem;
                border-radius: 0;
            }

            .featured-hero {
                height: 200px;
                background-image: url('https://queststudiogames.com/img/NARCOoS.png');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                border-radius: 1rem;
                margin-bottom: 2rem;
                position: relative;
                overflow: hidden;
                transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                transform: translateY(50px);
                opacity: 0;
                animation: fadeInUp 0.8s ease 0.2s forwards;
            }

            .vi-logo {
                font-size: 1.5rem;
            }

            .social-icons {
                justify-content: center;
                width: 100%;
            }

            .subscribe-btn {
                width: 100%;
            }
        }

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

        /* Loading animation */
        .loading {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-logo {
            width: 100px;
            height: 100px;
            position: relative;
        }

        .preloader-logo::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-top-color: #8b0000;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .preloader-logo::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 3px solid transparent;
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.5s linear infinite reverse;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Parallax effect */
        .parallax {
            transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Text reveal animation */
        .text-reveal {
            position: relative;
            display: inline-block;
            overflow: hidden;
        }

        .text-reveal span {
            display: inline-block;
            transform: translateY(100%);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .text-reveal.revealed span {
            transform: translateY(0);
            opacity: 1;
            height: 50px;
        }

        /* Tilt effect */
        .tilt-effect {
            transform-style: preserve-3d;
            transition: transform 0.1s ease;
        }

        /* Hover glow effect */
        .hover-glow {
            transition: all 0.3s ease;
        }

        .hover-glow:hover {
            box-shadow: 0 0 15px rgba(139, 0, 0, 0.7);
        }

        /* Navbar scroll effect */
        .navbar {
            transition: background-color 0.3s ease, padding 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.95);
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
    

    
        /* Aggiunte CSS per lo slider */
        .hero-slides-container {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .hero-slides-wrapper {
            display: flex;
            width: 100%; /* 100% * numero di slide */
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }

        .hero-slide {
            flex: 0 0 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        
        .hero-slide:nth-child(1) {
            background-image: url('https://queststudiogames.com/img/copertina1.png');
        }
        
        .hero-slide:nth-child(2) {
            background-image: url('https://queststudiogames.com/img/copertina5.png');
        }
        
        .hero-slide:nth-child(3) {
            background-image: url('https://queststudiogames.com/img/copertina4.png');
        }
        
        
    

    
        /* Desktop Dropdown */
        .dropdownMenu{
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: auto;
            background-color: #111;
            padding: 20px;
            display: none;
            z-index: 1000;
        }
        
        .dropdownMenu.active {
            display: block;
        }
        
        .dropdownMenu > div > div:first-child {
            font-size: 1.5rem;
            font-weight: bold;
            text-align: left;
            padding: 20px;
        }
        
        .cards_products {
            display: flex;
            gap: 20px;
            padding: 20px;
            cursor: pointer;
        }
        
        .card_product:hover{
            scale: 1.05;
            transition: all 0.3s;
        }

        .card_product img {
            width: 300px;
            height: 370px;
            object-fit: cover;
            border-radius: 1rem;
        }

        /* Mobile Menu - Rockstar Games Style */
        .mobile-menu-panel {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.3s ease-out;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .mobile-menu-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-close {
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .mobile-menu-close:hover {
            opacity: 0.7;
        }

        .mobile-menu-section {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-section-title {
            color: #8b0000;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .mobile-menu-item {
            color: white;
            font-size: 1rem;
            padding: 10px 0;
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: color 0.3s;
        }

        .mobile-menu-item:hover {
            color: #8b0000;
        }

        .mobile-menu-item i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .mobile-menu-search {
            padding: 15px 20px;
            position: relative;
        }

        .mobile-menu-search input {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            padding: 10px 15px;
            color: white;
            border-radius: 4px;
        }

        .mobile-menu-search i {
            position: absolute;
            right: 25px;
            top: 25px;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            .dropdownMenu {
                display: none !important;
            }
            
            .mobile-dropdown {
                display: block;
            }
        }
    

    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #f5f5f5;
        }

        .header {
            background-color: #000;
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 100;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
        }

        .menu-button {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: none;
        }

        .dropdown-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            color: white;
            transform: translateY(-100%);
            transition: transform 0.3s ease-in-out;
            z-index: 99;
            overflow-y: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

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

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .menu-title {
            font-size: 36px;
            font-weight: bold;
        }

        .view-all {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .view-all::after {
            content: "→";
            margin-left: 5px;
        }

        .games-container {
            display: flex;
            overflow-x: auto;
            gap: 25px;
            justify-content: space-between;
        }

        .game-card_mobile {
            flex: 0 0 auto;
            max-width: 160px;
            border-radius: 8px;
            overflow: hidden;
        }

        .game-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .menu-item {
            padding: 20px 0;
            font-size: 24px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            color: white;
        }

        .login-button {
            margin-top: 30%;
        }

        .login_menu-item {
            padding: 10px 0;
            font-size: 21px;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            color: white;
            background-color: darkred;
            border-radius: 1rem;
        }

        .external-link::after {
            content: "↗";
            font-size: 20px;
        }

        .close-button {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        /* Media query per dispositivi mobili */
        @media (max-width: 768px) {
            .menu-button {
                display: block;
            }
        }
    

    
        @media (max-width: 768px) {
            .hero-slides-container {
                height: 250px;
            }

            .hero-slide:nth-child(1) {
                background-size: contain;
                background-repeat: no-repeat;
            }   
            .hero-slide:nth-child(2) {
                background-size: contain;
                background-repeat: no-repeat;
            }  
            .hero-slide:nth-child(3) {
                background-size: contain;
                background-repeat: no-repeat;
            } 
        }
    
