* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    color: #fff;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-width: 120px;
    filter: drop-shadow(0 0 8px #4CAF50);
}

nav {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    align-items: center;
}

.nav-btn {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(45deg, #4CAF50, #388E3C);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.5);
}

.language-selector {
    display: flex;
    gap: 0.5rem;
}

.flag-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.flag-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.intro-section {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #4CAF50, #1a1a1a);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.intro-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 10px #4CAF50;
    animation: neonGlow 1.5s infinite alternate;
}

.intro-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    margin-top: 0.5rem;
}

section {
    padding: 2rem 1rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(76, 175, 80, 0.5);
    incorretomargin-bottom: 1rem;
    font-family: 'Press Start 2P', cursive;
}

.packages-container, .games-container, .catalog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.package-card {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(76, 175, 80, 0.5);
}

.package-title {
    font-size: 1.5rem;
    color: #4CAF50;
}

.package-price {
    font-size: 1.2rem;
    color: #fff;
    margin: 0.5rem 0;
}

.package-features {
    list-style: none;
    color: #b0b0b0;
    text-align: left;
}

.package-features li {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.payment-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.btn, .pix-btn, .stripe-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    border: none;
    background: linear-gradient(45deg, #4CAF50, #388E3C);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.btn:hover, .pix-btn:hover, .stripe-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 12px rgba(76, 175, 80, 0.5);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 10px #4CAF50;
}

.catalog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.catalog-container .movie-card {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(76, 175, 80, 0.5);
}

.movie-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
}

.movie-card h3 {
    font-size: 1rem;
    padding: 0.5rem 0;
    color: #fff;
}

.movie-card button {
    background: #4CAF50;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.5);
    animation: slideIn 0.5s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.movie-poster, .game-image {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0.5 0.5rem;
}

.movie-title {
    font-size: 1.3rem;
    color: #4CAF50;
    margin: 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-overview {
    font-size: 0.9rem;
    color: #b0b0b0;
    max-height: 120px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
    flex-grow: 1;
}

.modal-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 0.5rem;
    flex-shrink: 0;
}

.watch-btn, .close-btn {
    padding: 0.6rem 1rem;
    border-radius: 20px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.watch-btn {
    background: linear-gradient(45deg, #4CAF50, #388E3C);
}

.watch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 12px rgba(76, 175, 80, 0.5);
}

.close-btn {
    background: #607d8b;
}

.close-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 12px rgba(96, 125, 139, 0.5);
}

footer {
    padding: 0.5rem;
    background: #1a1a1a;
    text-align: center;
    font-size: 0.8rem;
    color: #b0b0b0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.7);
}

@keyframes neonGlow {
    from { text-shadow: 0 0 5px #4CAF50, 0 0 10px #388E3C; }
    to { text-shadow: 0 0 10px #4CAF50, 0 0 20px #388E3C; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (min-width: 768px) {
    header {
        padding: 0.8rem;
    }
    .logo {
        max-width: 150px;
    }
    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    .flag-icon {
        width: 32px;
        height: 32px;
    }
    .intro-title {
        font-size: 2.5rem;
    }
    .intro-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .packages-container, .games-container, .catalog-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 2rem;
    }
    .package-title {
        font-size: 1.8rem;
    }
    .package-price {
        font-size: 1.5rem;
    }
    .modal-content {
        max-width: 450px;
    }
    .movie-poster {
        max-height: 300px;
    }
    .movie-title {
        font-size: 1.5rem;
    }
    .movie-overview {
        font-size: 1rem;
        max-height: 150px;
    }
}