 {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #1a1a2e;
            color: #e6e6e6;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-image:url("img/fundo_site.png") ;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        /* Cabeçalho */
        header {
            background-color: rgba(15, 15, 26, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 10;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 60px;
            width: auto;
            border-radius: 8px;
        }
        
        .studio-name {
            margin-left: 15px;
            font-size: 1.8rem;
            font-weight: bold;
            color: #6ac4ff;
            text-shadow: 0 0 10px rgba(106, 196, 255, 0.5);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: #e6e6e6;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        nav ul li a:hover {
            color: #6ac4ff;
            background-color: rgba(106, 196, 255, 0.1);
        }
        
        /* Conteúdo Principal */
        main {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem;
            max-width: 1200px;
            margin: 2rem auto;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.85);
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }
        
        .game-title {
            text-align: center;
            margin-bottom: 2rem;
            width: 100%;
        }
        
        .game-title h1 {
            font-size: 2.5rem;
            color: #6ac4ff;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 15px rgba(106, 196, 255, 0.6);
        }
        
        .game-title p {
            font-size: 1.2rem;
            color: #cccccc;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .content-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            width: 100%;
            margin-bottom: 2rem;
        }
        
        .gallery-section, .video-section {
            flex: 1;
            min-width: 300px;
        }
        
        .section-title {
            font-size: 1.5rem;
            color: #6ac4ff;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #6ac4ff;
        }
        
        /* Galeria de Imagens */
        .gallery-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            background-color: rgba(15, 15, 26, 0.7);
        }
        
        .gallery {
            display: flex;
            transition: transform 0.5s ease;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
        }
        
        .gallery::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Edge */
        }
        
        .gallery-item {
            min-width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #000;
        }
        
        .gallery-item img {
            max-width: 100%;
            max-height: 512px;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }
        
        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(106, 196, 255, 0.7);
            color: #0f0f1a;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 20;
        }
        
        .gallery-nav:hover {
            background-color: #6ac4ff;
        }
        
        .gallery-nav.prev {
            left: 10px;
        }
        
        .gallery-nav.next {
            right: 10px;
        }
        
        /* Seção de Vídeo */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* Proporção 16:9 */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Descrição do Jogo */
        .description {
            width: 100%;
            background-color: rgba(15, 15, 26, 0.7);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            margin-top: 1rem;
        }
        
        .description h2 {
            color: #6ac4ff;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        
        .description p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .feature {
            background-color: rgba(106, 196, 255, 0.1);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #6ac4ff;
        }
        
        .feature h3 {
            color: #6ac4ff;
            margin-bottom: 0.5rem;
        }

        
        /* Rodapé */
        footer {
            background-color: rgba(15, 15, 26, 0.9);
            padding: 2rem;
            text-align: center;
            margin-top: auto;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .social-links a {
            color: #e6e6e6;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: #6ac4ff;
        }
        
        .copyright {
            color: #6b6b6b;
            font-size: 0.9rem;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 1rem;
            }
            
            .studio-name {
                margin: 10px 0;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .game-title h1 {
                font-size: 2rem;
            }
            
            .content-container {
                flex-direction: column;
            }
            
            .gallery-item {
                height: 200px;
            }
            
            .posts-container {
                display: flex;
                flex-direction: column;
                gap: 2rem;
                width: 100%;
            }

            .post {
                background-color: rgba(15, 15, 26, 0.7);
                padding: 1.5rem;
                border-radius: 10px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
                transition: transform 0.3s ease;
            }

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

            .post-title {
                font-size: 1.8rem;
                color: #6ac4ff;
                margin-bottom: 1rem;
            }

            .post-content {
                font-size: 1rem;
                color: #cccccc;
                line-height: 1.6;
            }

        }