/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Seleção de texto */
::selection {
    background-color: #000080;
    color: #FFD700;
}

::-moz-selection {
    background-color: #000080;
    color: #FFD700;
}

:root {
    --primary-color: #000080;
    --secondary-color: #1a1a1a;
    --text-color: #e0e0e0;
    --accent-color: #FFD700;
    --yellow-color: #FFFF00;
    --bg-dark: #0a0a0a;
    --bg-gray: #1f1f1f;
    --bg-card: #2a2a2a;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Scroll offset for fixed navbar */
section {
    scroll-margin-top: 120px;
}

/* Navbar */
.navbar {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    cursor: pointer;
    transition: var(--transition);
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:visited {
    color: var(--text-color);
}

.nav-menu a:hover,
.nav-menu a:active,
.nav-menu a:focus,
.nav-menu a.active {
    color: #FFD700 !important;
    outline: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color) !important;
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:active::after,
.nav-menu a:focus::after,
.nav-menu a.active::after {
    width: 100%;
    background-color: #FFD700 !important;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-btn {
    background: transparent;
    border: 2px solid transparent;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
    opacity: 0.6;
}

.language-btn:hover {
    opacity: 1;
    border-color: var(--accent-color);
}

.language-btn.active {
    opacity: 1;
    border-color: var(--accent-color);
    background-color: rgba(255, 215, 0, 0.1);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 480px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 128, 0.3));
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s backwards;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #0000b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 128, 0.4);
    text-decoration: none;
}

/* Videos Section */
.videos-section {
    padding: 10rem 0 5rem 0;
    background-color: var(--secondary-color);
}

.videos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.videos-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Carrossel */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover:not(:disabled) {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #666;
    color: #666;
}

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

.video-grid.carousel {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    transition: transform 0.4s ease;
    flex: 1;
}

.video-grid.carousel .video-card {
    min-width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
}

.video-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid #333;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 128, 0.3);
    border-color: var(--primary-color);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.play-icon {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.video-card:hover .play-icon {
    opacity: 1;
    transform: scale(1.2);
    color: var(--accent-color);
}

.video-card h3 {
    padding: 1rem;
    font-size: 1.2rem;
}

.video-card p {
    padding: 0 1rem 1rem;
    color: #999;
}

.video-card .download-buttons {
    display: flex;
    gap: 1rem;
    padding: 0 1rem 1rem;
    justify-content: center;
}

.video-card .download-btn-img {
    max-width: 120px;
    min-width: 120px;
}

.video-card .download-btn-img img {
    width: 100%;
    height: 40px;
    object-fit: contain;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.about-section h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.about-section > .container > p {
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.about-section h1,
.about-section h3,
.about-section h4 {
    text-align: left;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-card);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid #333;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.feature p {
    color: #999;
}

/* Contact Section */

/* Publish Section */
.publish-section {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.publish-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.publish-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.publish-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 2rem auto 3rem;
    color: #ccc;
}

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

.highlight {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-card);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid #333;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
    border-color: var(--accent-color);
}

.highlight-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.highlight p {
    color: #999;
}

/* Publish Page Styles */
.publish-page {
    min-height: 100vh;
}

.hero-publish {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.hero-publish h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits Section */
.publish-benefits {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.publish-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.publish-benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #333;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.benefit-card p {
    color: #999;
    line-height: 1.6;
}

/* Process Section */
.publish-process {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.publish-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.publish-process h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.step p {
    color: #999;
    line-height: 1.6;
}

/* Requirements Section */
.publish-requirements {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.publish-requirements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.publish-requirements h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.requirements-list {
    max-width: 900px;
    margin: 4rem auto 0;
    display: grid;
    gap: 2rem;
}

.requirement {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--bg-card);
    border-radius: 10px;
    border: 1px solid #333;
    transition: var(--transition);
}

.requirement:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
}

.req-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.requirement h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.requirement p {
    color: #999;
    line-height: 1.6;
}

/* Contact Form Section */
.publish-contact {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.publish-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.publish-contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    margin: 2rem auto 3rem;
}

.publish-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-color);
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.alternative-contact {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.alternative-contact p {
    color: #999;
    margin: 0.5rem 0;
}

.alternative-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.alternative-contact a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--bg-gray);
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: #0000b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 128, 0.4);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 3rem 0 1.5rem 0;
}

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

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.2);
}

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

/* All Games Page - New Layout */
.all-games-section {
    padding: 120px 0 4rem;
    background-color: var(--bg-dark);
}

.all-games-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.all-games-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 3rem;
}

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

.game-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #333;
    transition: var(--transition);
}

.game-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 128, 0.2);
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-item:hover .game-image img {
    transform: scale(1.05);
}

.game-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.game-header h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin: 0;
}

.game-rating {
    font-size: 1.3rem;
    color: var(--accent-color);
    background-color: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    white-space: nowrap;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background-color: rgba(0, 0, 128, 0.3);
    color: var(--text-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 128, 0.5);
}

.game-description {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    flex: 1;
}

.game-downloads {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    flex: 1;
    border: 2px solid transparent;
}

.download-btn.android {
    background: linear-gradient(135deg, #3ddc84 0%, #2bb56f 100%);
    color: white;
}

.download-btn.android:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(61, 220, 132, 0.4);
    border-color: #3ddc84;
}

.download-btn.ios {
    background: linear-gradient(135deg, #007aff 0%, #0051d5 100%);
    color: white;
}

.download-btn.ios:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.4);
    border-color: #007aff;
}

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

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.btn-text strong {
    font-size: 1rem;
    font-weight: 600;
}

/* Download Button Images */
.download-btn-img {
    display: inline-block;
    transition: var(--transition);
    flex: 1;
    max-width: 200px;
}

.download-btn-img img {
    width: 100%;
    height: 60px;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

.download-btn-img:hover {
    transform: translateY(-3px);
    filter: brightness(1.1) drop-shadow(0 5px 15px rgba(255, 215, 0, 0.6));
}

.download-btn-img.android:hover {
    filter: brightness(1.1) drop-shadow(0 5px 15px rgba(255, 215, 0, 0.6));
}

.download-btn-img.ios:hover {
    filter: brightness(1.1) drop-shadow(0 5px 15px rgba(255, 215, 0, 0.6));
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

.pagination-btn {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #0000b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 128, 0.4);
}

.pagination-btn:disabled {
    background-color: #333;
    border-color: #333;
    color: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-info {
    font-size: 1.1rem;
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    background-color: var(--bg-card);
    border-radius: 8px;
    border: 1px solid #333;
}

.pagination-info span {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .video-grid.carousel .video-card {
        min-width: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-logo {
        max-width: 320px;
        margin-bottom: 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

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

    .video-grid.carousel .video-card {
        min-width: 100%;
    }

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

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

    /* All Games Page Responsive */
    .game-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .game-image {
        height: 300px;
    }

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

    .game-header h2 {
        font-size: 1.5rem;
    }

    .game-downloads {
        flex-direction: column;
    }

    .download-btn {
        justify-content: center;
    }

    .download-btn-img {
        max-width: 180px;
        margin: 0 auto;
    }

    /* Paginação Responsiva */
    .pagination {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .pagination-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .pagination-info {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
}

/* ==================== ACESSIBILIDADE ==================== */
/* Respeitar preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==================== MENU MOBILE ==================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle .hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark, #212529);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white, #FFFFFF);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .language-selector {
        margin-top: 1rem;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}
