:root {
    --primary: #00ff88;
    /* Verde Neon */
    --secondary: #7000ff;
    /* Roxo Neon */
    --bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --text-gray: #a0a0a0;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 85px;
    width: auto;
    transition: 0.3s;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.btn-login {
    padding: 10px 25px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: 0.3s;
}

/* --- Hero --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: 100px;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(112, 0, 255, 0.15), transparent 50%);
}

.hero-content {
    max-width: 650px;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #fff, #ccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-awards {
    margin: 20px 0 30px;
}

.hero-awards p {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 10px;
}

.hero-awards .highlight {
    color: var(--primary);
    font-weight: 700;
}

.cta-button {
    padding: 18px 45px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--primary);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.orb-1 {
    top: 15%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: var(--secondary);
}

.orb-2 {
    bottom: 5%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary);
}

/* --- Apps --- */
.apps-section {
    padding: 60px 5%;
    text-align: center;
    background: #0f0f0f;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.apps-section p {
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 30px;
}

.apps-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.app-item {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

/* --- Planos --- */
.planos-section {
    padding: 100px 5%;
}


nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.btn-login {
    padding: 10px 25px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #fff, #ccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-awards {
    margin: 20px 0 30px;
}

.hero-awards p {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 10px;
}

.hero-awards .highlight {
    color: var(--primary);
    font-weight: 700;
}

.cta-button {
    padding: 18px 45px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--primary);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.orb-1 {
    top: 15%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: var(--secondary);
}

.orb-2 {
    bottom: 5%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary);
}

/* --- Apps --- */
.apps-section {
    padding: 60px 5%;
    text-align: center;
    background: #0f0f0f;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.apps-section p {
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 30px;
}

.apps-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.app-item {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

/* --- Planos --- */
.planos-section {
    padding: 100px 5%;
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title span {
    color: var(--primary);
}

/* Abas */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-gray);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

/* Cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: none;
    /* Oculto por padrão */
}

.card.show {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card.destaque {
    border: 1px solid var(--secondary);
    background: linear-gradient(180deg, rgba(112, 0, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.card.destaque::before {
    content: 'MAIS VENDIDO';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(45deg);
}

.velocidade {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.unidade {
    font-size: 1.5rem;
    color: var(--primary);
    margin-left: 5px;
}

.preco {
    margin: 20px 0;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.preco strong {
    font-size: 2rem;
    color: #fff;
}

.btn-card {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.card:hover .btn-card {
    background: var(--primary);
    color: #000;
}

/* Streaming Tags */
.sub-info {
    color: var(--text-gray);
}

.game-card.lol {
    border-left-color: #0ac8b9;
}

.game-card.csgo {
    border-left-color: #ffae00;
}

.game-card.fortnite {
    border-left-color: #9d4dbb;
}

.game-card.cod {
    border-left-color: #4caf50;
}

.game-header h4 {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.status {
    font-size: 0.7rem;
    font-weight: 800;
    color: #00ff88;
    letter-spacing: 1px;
}

.ping-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.ping-value span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    margin-left: 5px;
}

/* --- Support Section --- */
.support-section {
    padding: 80px 5%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.support-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.support-card h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.2rem;
}

.time-table {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    text-align: left;
}

.time-row:last-child {
    border-bottom: none;
}

.time-row .day {
    color: var(--text-gray);
    font-weight: 600;
}

.time-row .hours {
    color: #fff;
    text-align: right;
    font-weight: bold;
}

.holiday-alert {
    font-size: 0.85rem;
    color: #ff4655;
    background: rgba(255, 70, 85, 0.1);
    padding: 8px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

.anatel-badge-box {
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
}

.anatel-label {
    display: block;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.anatel-code small {
    display: block;
    color: #666;
    font-size: 0.7rem;
}

.anatel-code strong {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* --- Footer --- */
footer {
    background: #050505;
    padding: 80px 5% 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.col p,
.col a {
    color: var(--text-gray);
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: 0.3s;
}

.col a:hover {
    color: var(--primary);
}

.phone {
    color: var(--primary) !important;
    font-weight: bold;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #444;
    border-top: 1px solid #111;
    padding-top: 30px;
}

.copyright a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #ffffff;
}

/* --- Botão Flutuante WhatsApp Moderno --- */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.whatsapp-text {
    color: #ffffff;
    font-weight: 700;
    text-align: left;
    padding: 0 10px;
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* --- Gamer Awards --- */
.gamer-awards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.gamer-awards img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

/* --- New Plan Features --- */
.wifi-info {
    color: var(--primary);
    font-weight: 800;
    margin: 10px 0;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.plan-benefits {
    list-style: none;
    margin: 15px 0;
    text-align: left;
    padding: 0 10px;
}

.plan-benefits li {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* --- Restored Missing Styles --- */
.screens {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.streaming-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.streaming-tag.telecine {
    color: #ff0033;
    border: 1px solid #ff0033;
}

/* --- Gamer Section --- */
.gamer-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0.8)),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.gamer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.gamer-specs {
    list-style: none;
    margin-top: 30px;
}

.gamer-specs li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ddd;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.ping-dashboard {
    flex: 1;
    display: grid;
    gap: 15px;
    min-width: 300px;
}

.game-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #555;
    display: flex;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    header {
        .logo-container {
            order: 1;
        }

        .btn-login {
            order: 2;
        }

        .menu-icon {
            order: 3;
        }

        nav {
            order: 4;
        }
    }

    .logo-img {
        max-height: 50px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 0.95rem;
    }

    .menu-icon {
        display: flex;
        z-index: 1001;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        padding-top: 100px;
        z-index: 1000;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .game-card {
        text-align: left;
    }

    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .whatsapp-text {
        font-size: 0.7rem;
    }

    .whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* --- New Plan Features --- */
.wifi-info {
    color: var(--primary);
    font-weight: 800;
    margin: 10px 0;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.plan-benefits {
    list-style: none;
    margin: 15px 0;
    text-align: left;
    padding: 0 10px;
}

.plan-benefits li {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* --- Restored Missing Styles --- */
.screens {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.streaming-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.streaming-tag.telecine {
    color: #ff0033;
    border: 1px solid #ff0033;
}

/* --- Gamer Section --- */
.gamer-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0.8)),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.gamer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.gamer-specs {
    list-style: none;
    margin-top: 30px;
}

.gamer-specs li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ddd;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.ping-dashboard {
    flex: 1;
    display: grid;
    gap: 15px;
    min-width: 300px;
}

.game-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.game-card:hover {
    transform: scale(1.02);
    background: rgba(30, 30, 30, 0.8);
}

/* --- Download App Section --- */
.download-app-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.app-content {
    max-width: 800px;
    margin: 0 auto;
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
}

.app-text h2 span {
    color: var(--primary);
}

.app-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-btn svg {
    width: 30px;
    height: 30px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text small {
    font-size: 0.7rem;
    color: #ccc;
}

.btn-text span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Google Play Style */
.store-btn.google-play {
    background: rgba(255, 255, 255, 0.05);
}

.store-btn.google-play:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00ff88;
    transform: translateY(-3px);
}

.store-btn.google-play svg {
    color: #00ff88;
}

/* App Store Style */
.store-btn.app-store {
    background: rgba(255, 255, 255, 0.05);
}

.store-btn.app-store:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #007aff;
    transform: translateY(-3px);
}

.plan-benefits li {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* --- Restored Missing Styles --- */
.screens {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.streaming-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.streaming-tag.telecine {
    color: #ff0033;
    border: 1px solid #ff0033;
}

/* --- Gamer Section --- */
.gamer-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0.8)),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.gamer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.gamer-specs {
    list-style: none;
    margin-top: 30px;
}

.gamer-specs li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ddd;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.ping-dashboard {
    flex: 1;
    display: grid;
    gap: 15px;
    min-width: 300px;
}

.game-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.game-card:hover {
    transform: scale(1.02);
    background: rgba(30, 30, 30, 0.8);
}

/* --- Download App Section --- */
.download-app-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.app-content {
    max-width: 800px;
    margin: 0 auto;
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
}

.app-text h2 span {
    color: var(--primary);
}

.app-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-btn svg {
    width: 30px;
    height: 30px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text small {
    font-size: 0.7rem;
    color: #ccc;
}

.btn-text span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Google Play Style */
.store-btn.google-play {
    background: rgba(255, 255, 255, 0.05);
}

.store-btn.google-play:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00ff88;
    transform: translateY(-3px);
}

.store-btn.google-play svg {
    color: #00ff88;
}

/* App Store Style */
.store-btn.app-store {
    background: rgba(255, 255, 255, 0.05);
}

.store-btn.app-store:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #007aff;
    transform: translateY(-3px);
}

.plan-benefits li {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* --- Restored Missing Styles --- */
.screens {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.streaming-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.streaming-tag.telecine {
    color: #ff0033;
    border: 1px solid #ff0033;
}

/* --- Gamer Section --- */
.gamer-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0.8)),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.gamer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.gamer-specs {
    list-style: none;
    margin-top: 30px;
}

.gamer-specs li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ddd;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.ping-dashboard {
    flex: 1;
    display: grid;
    gap: 15px;
    min-width: 300px;
}

.game-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.game-card:hover {
    transform: scale(1.02);
    background: rgba(30, 30, 30, 0.8);
}

/* --- Download App Section --- */
.download-app-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.app-content {
    max-width: 800px;
    margin: 0 auto;
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
}

.app-text h2 span {
    color: var(--primary);
}

.app-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-btn svg {
    width: 30px;
    height: 30px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text small {
    font-size: 0.7rem;
    color: #ccc;
}

.btn-text span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Google Play Style */
.store-btn.google-play {
    background: rgba(255, 255, 255, 0.05);
}

.store-btn.google-play:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00ff88;
    transform: translateY(-3px);
}

.store-btn.google-play svg {
    color: #00ff88;
}

/* App Store Style */
.store-btn.app-store {
    background: rgba(255, 255, 255, 0.05);
}

.store-btn.app-store:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #007aff;
    transform: translateY(-3px);
}

.store-btn.app-store svg {
    color: #fff;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 20px;
}

.footer-slogan {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
}