html {
    scroll-behavior: smooth;
}

body {
    background-color: #0d1117;
    color: #e6edf3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-custom {
    background-color: #161b22;
    border-bottom: 1px solid #30363d;
}

/* Brand Style */
.brand-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: -webkit-linear-gradient(45deg, #0cacdc, #48bdc0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.hero-section {
    padding: 40px 0 60px 0;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #b4c6d9;
}

.feature-list i {
    color: #00c6ff;
    margin-right: 8px;
}

.card-pricing {
    background-color: #161b22;
    border: 1px solid #30363d;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-pricing:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.2);
    border-color: #00c6ff;
}

.badge-discount {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
    color: white;
}

.movie-grid img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.movie-grid img:hover {
    transform: scale(1.05);
    z-index: 10;
}

.btn-plans {
    background: linear-gradient(45deg, #004599, #7195c2);
    border: none;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-plans:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.4);
    color: white;
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .hero-section {
        padding: 20px 0 40px 0;
    }

    .feature-list {
        font-size: 0.9rem;
    }

    .btn-plans {
        width: 100%;
        margin-top: 15px;
    }

    .card-pricing {
        margin: 0 10px; 
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
}