* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7C3AED;
    --secondary-color: #0F172A;
    --accent-color: #00D9FF;
    --text-color: #F1F5F9;
    --light-text: #CBD5E1;
    --bg-color: #0F172A;
    --bg-secondary: #1E293B;
    --bg-tertiary: #334155;
    --border-color: #1E293B;
    --white: #F1F5F9;
    --success: #10B981;
    --error: #EF4444;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2847 100%);
    background-attachment: fixed;
    min-height: 100vh;
    animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    flex: 0 0 auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

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

.logo-highlight {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.hero-slider {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-overlay {
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
}

.slider-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-slider h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-tagline {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 700;
}

.slider-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-text);
}

.cta-button,
.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.cta-button:hover,
.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.cta-button:hover::before,
.cta-button-large:hover::before {
    left: 100%;
}

.cta-button-large {
    padding: 18px 50px;
    font-size: 18px;
}

.page-header {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header p {
    font-size: 18px;
    color: var(--light-text);
}

.features-highlights {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-secondary) 100%);
}

.features-highlights h2,
.features-detailed h2,
.packages-section h2,
.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 40px;
    font-size: 16px;
}

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

.highlight-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 217, 255, 0.05));
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.highlight-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(0, 217, 255, 0.1));
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.highlight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 700;
}

.highlight-card p {
    color: var(--light-text);
    line-height: 1.8;
}

.comparison-section {
    padding: 100px 20px;
    background: var(--secondary-color);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.comparison-section h2 {
    margin-bottom: 50px;
}

.comparison-table {
    overflow-x: auto;
    border-radius: 12px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
}

table thead {
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
}

table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: var(--white);
}

table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    color: var(--light-text);
}

table tbody tr:hover {
    background-color: rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

table td.check {
    color: var(--success);
    font-weight: 700;
}

.features-detailed {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-secondary) 100%);
}

.feature-block {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 217, 255, 0.05));
    padding: 60px;
    margin: 40px 0;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-block.alternate {
    border-left-color: var(--accent-color);
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-left-color: var(--accent-color);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.feature-block p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-highlights span {
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-highlights span:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
}

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

.features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 217, 255, 0.05));
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
    border-top-color: var(--accent-color);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 700;
}

.feature-card p {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.6;
}

.packages-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(0, 217, 255, 0.02) 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.package-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(0, 217, 255, 0.1));
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.package-badge.best-value {
    background: linear-gradient(135deg, var(--accent-color), #00B0CC);
    color: var(--secondary-color);
}

.package-card h3 {
    font-size: 28px;
    margin: 20px 0 25px 0;
    color: var(--accent-color);
    font-weight: 700;
}

.price {
    margin-bottom: 30px;
}

.amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    display: block;
}

.period {
    font-size: 14px;
    color: var(--light-text);
}

.package-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    color: var(--light-text);
    transition: all 0.3s ease;
}

.package-features li:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 2px solid transparent;
    cursor: pointer;
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.package-btn.primary {
    background: linear-gradient(135deg, var(--accent-color), #00B0CC);
    color: var(--secondary-color);
}

.package-btn.primary:hover {
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.package-note {
    font-size: 13px;
    color: var(--light-text);
    margin-top: 15px;
    font-style: italic;
}

.package-comparison {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.package-comparison h2 {
    margin-bottom: 50px;
}

.why-choose-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(0, 217, 255, 0.02) 100%);
}

.why-choose-section h2 {
    margin-bottom: 50px;
}

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

.reason-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 217, 255, 0.05));
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.reason-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 700;
}

.reason-card p {
    color: var(--light-text);
}

.faq-section {
    padding: 100px 20px;
    background: var(--secondary-color);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(124, 58, 237, 0.05));
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out;
}

.faq-item:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.8;
}

.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(0, 217, 255, 0.02) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.contact-info > p {
    color: var(--light-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.method-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-method h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: 700;
}

.contact-method p {
    color: var(--light-text);
    font-size: 14px;
}

.phone-number,
.support-hours {
    font-weight: bold;
    color: var(--accent-color);
    margin-top: 10px;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #20BA5C);
}

.contact-btn.whatsapp:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-btn.email {
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
}

.contact-btn.live-chat {
    background: linear-gradient(135deg, var(--accent-color), #00B0CC);
    color: var(--secondary-color);
}

.contact-btn.live-chat:hover {
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3);
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 700;
}

.contact-form {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--white);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    background: rgba(15, 23, 42, 0.7);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    color: var(--light-text);
}

.checkbox-label input {
    width: auto;
    margin-right: 10px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.form-note {
    text-align: center;
    color: var(--light-text);
    margin-top: 15px;
    font-size: 14px;
}

.support-info {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.support-info h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--white);
    font-weight: 700;
}

.support-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 217, 255, 0.05));
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.reason:hover {
    transform: translateY(-8px);
    border-top-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.reason h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 700;
}

.reason p {
    color: var(--light-text);
    font-size: 14px;
}

.common-issues {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(0, 217, 255, 0.02) 100%);
}

.common-issues h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--white);
    font-weight: 700;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.issue-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.issue-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 700;
}

.issue-card p {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.6;
}

.business-inquiries {
    padding: 100px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.business-inquiries h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
}

.business-inquiries > p {
    color: var(--light-text);
    margin-bottom: 40px;
}

.business-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.business-contact {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.business-contact:hover {
    transform: translateY(-8px);
    border-top-color: var(--accent-color);
}

.business-contact h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: 700;
}

.business-contact p {
    color: var(--light-text);
}

.important-notice {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(124, 58, 237, 0.05));
}

.notice-box {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-left: 5px solid var(--error);
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.notice-box h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.notice-box p {
    color: var(--light-text);
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px 20px 20px 20px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 700;
}

.footer-section p,
.footer-section ul {
    color: var(--light-text);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding-top: 20px;
    text-align: center;
    color: var(--light-text);
    font-size: 14px;
}

.trending-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-secondary) 100%);
}

.trending-section.alt {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--secondary-color) 100%);
}

.trending-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--white);
    font-weight: 800;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.media-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(124, 58, 237, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.media-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.media-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.media-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card:hover .media-poster img {
    transform: scale(1.08);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card:hover .media-overlay {
    opacity: 1;
}

.rating {
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
}

.media-info {
    padding: 15px;
    background: var(--bg-secondary);
}

.media-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
}

.media-year {
    font-size: 12px;
    color: var(--light-text);
    margin-bottom: 8px;
}

.media-description {
    font-size: 13px;
    color: var(--light-text);
    line-height: 1.4;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.view-all-btn:hover {
    transform: translateX(8px) translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.loading-skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, rgba(124, 58, 237, 0.1) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
    aspect-ratio: 2/3;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.content-header h2 {
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid rgba(124, 58, 237, 0.3);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--accent-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.3);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.page-btn {
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.page-btn:disabled {
    background: rgba(124, 58, 237, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

.page-info {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 16px;
}

.movies-section,
.series-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-secondary) 100%);
}

.series-features {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(0, 217, 255, 0.02) 100%);
}

.series-features h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--white);
    font-weight: 700;
}

.trending-info {
    padding: 60px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.trending-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.trending-info p {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.device-item {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.device-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.device-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent-color);
    font-weight: 700;
}

.device-item p {
    color: var(--light-text);
    font-size: 14px;
}

.quality-table {
    overflow-x: auto;
}

.streaming-quality {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(0, 217, 255, 0.02) 100%);
}

.streaming-quality h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--white);
    font-weight: 700;
}

@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-buttons {
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .nav-menu {
        gap: 15px;
    }

    .hero-slider h1 {
        font-size: 32px;
    }

    .slider-tagline {
        font-size: 20px;
    }

    .slider-subtitle {
        font-size: 14px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .features-highlights h2,
    .features-detailed h2,
    .packages-section h2,
    .faq-section h2 {
        font-size: 28px;
    }

    .feature-block {
        padding: 30px;
    }

    .feature-block h2 {
        font-size: 22px;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .cta-button,
    .cta-button-large {
        padding: 12px 30px;
        font-size: 14px;
    }

    .highlights-grid,
    .packages-grid,
    .reasons-grid,
    .faq-grid,
    .features-cards,
    .issues-grid {
        grid-template-columns: 1fr;
    }

    .feature-highlights {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }

    .hero-slider {
        padding: 60px 15px;
    }

    .hero-slider h1 {
        font-size: 24px;
    }

    .slider-tagline {
        font-size: 16px;
    }

    .slider-subtitle {
        font-size: 12px;
    }

    .page-header {
        padding: 40px 15px;
    }

    .page-header h1 {
        font-size: 20px;
    }

    .features-highlights,
    .packages-section,
    .contact-section,
    .faq-section {
        padding: 40px 15px;
    }

    .highlight-icon,
    .method-icon {
        font-size: 32px;
    }

    .cta-button,
    .cta-button-large {
        padding: 10px 20px;
        font-size: 12px;
    }

    table {
        font-size: 12px;
    }

    table th,
    table td {
        padding: 10px;
    }
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 20px 0;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-slider {
        padding: 60px 20px;
    }

    .hero-slider h1 {
        font-size: 32px;
    }

    .slider-tagline {
        font-size: 18px;
    }

    .slider-subtitle {
        font-size: 14px;
    }

    .page-header {
        padding: 50px 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 14px;
    }

    .features-highlights h2,
    .packages-section h2,
    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .highlights-grid,
    .reasons-grid,
    .features-cards {
        grid-template-columns: 1fr;
    }

    .feature-block {
        padding: 30px 20px;
        margin: 20px 0;
    }

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

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-15px);
    }

    .cta-button,
    .cta-button-large {
        padding: 12px 25px;
        font-size: 14px;
    }

    .feature-icon,
    .highlight-icon {
        font-size: 36px;
    }

    table {
        font-size: 13px;
    }

    table th,
    table td {
        padding: 12px 8px;
    }

    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 22px;
    }

    .hero-slider {
        padding: 40px 15px;
    }

    .hero-slider h1 {
        font-size: 24px;
    }

    .slider-tagline {
        font-size: 16px;
    }

    .slider-subtitle {
        font-size: 12px;
    }

    .page-header {
        padding: 40px 15px;
    }

    .page-header h1 {
        font-size: 22px;
    }

    .features-highlights,
    .packages-section,
    .contact-section,
    .faq-section {
        padding: 30px 15px;
    }

    .features-highlights h2,
    .packages-section h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .highlight-card,
    .feature-card,
    .package-card,
    .reason-card,
    .faq-item {
        padding: 20px 15px;
    }

    .amount {
        font-size: 36px;
    }

    .price {
        margin-bottom: 20px;
    }

    .package-card h3 {
        font-size: 22px;
    }

    .feature-block h2 {
        font-size: 20px;
    }

    .feature-block p {
        font-size: 14px;
    }

    .feature-highlights {
        gap: 10px;
    }

    .feature-highlights span {
        font-size: 12px;
        padding: 6px 12px;
    }

    .cta-button,
    .cta-button-large {
        padding: 10px 20px;
        font-size: 12px;
    }

    .feature-icon,
    .highlight-icon {
        font-size: 32px;
    }

    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .media-card {
        border-radius: 8px;
    }

    table {
        font-size: 11px;
    }

    table th,
    table td {
        padding: 8px 5px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-container {
        flex: 1;
    }
}