/* ===== VINOMTV Main Styles ===== */
:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #111111;
    --accent-orange: #ff6b00;
    --accent-orange-hover: #ff8c00;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark-gray: #888888;
    --border-gray: #333333;
    --card-bg: #1a1a1a;
    --card-bg-hover: #222222;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }

p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
    background-color: var(--primary-dark);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gray);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
}

.main-navigation a:hover {
    color: var(--accent-orange);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--accent-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.price-box {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-currency {
    font-size: 24px;
    color: var(--text-gray);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-orange);
}

.price-period {
    font-size: 18px;
    color: var(--text-gray);
}

.discount-code {
    background-color: rgba(255, 107, 0, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    margin: 15px 0;
    font-weight: 600;
}

.guarantee {
    color: #4CAF50;
    margin-top: 15px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ===== Device Carousel ===== */
.device-carousel {
    background-color: var(--secondary-dark);
    padding: 40px 0;
    overflow: hidden;
}

.carousel-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 50px;
}

.carousel-item {
    flex: 0 0 auto;
    text-align: center;
}

.carousel-item i {
    font-size: 50px;
    color: var(--accent-orange);
}

.carousel-item span {
    display: block;
    margin-top: 10px;
    color: var(--text-light);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== Features Section ===== */
.features-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-title p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: var(--card-bg-hover);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.feature-icon i {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.feature-card p {
    color: var(--text-gray);
}

/* ===== Pricing Packages ===== */
.packages-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-orange);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.package-header {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
    padding: 30px;
    text-align: center;
}

.package-header h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
}

.package-price small {
    font-size: 14px;
    font-weight: 400;
}

.package-body {
    padding: 30px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.package-features li:before {
    content: "✓";
    color: var(--accent-orange);
    font-weight: 700;
    margin-right: 10px;
}

.package-footer {
    text-align: center;
}

/* ===== How It Works ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
}

.step-item h3 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.step-item p {
    color: var(--text-gray);
}

/* ===== Sports Section ===== */
.sports-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sports-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.sports-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* ===== Device & Channels ===== */
.device-channels-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.device-card, .channels-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
}

.device-card i, .channels-card i {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.device-card h3, .channels-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ===== Family Friendly ===== */
.family-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.family-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.family-list {
    list-style: none;
    margin: 30px 0;
}

.family-list li {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.family-list i {
    color: var(--accent-orange);
    margin-right: 10px;
}

.family-trust {
    font-weight: 600;
    color: var(--accent-orange);
}

.family-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* ===== Free Tools ===== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tool-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.tool-card i {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.tool-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 18px;
}

.tool-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.tool-link {
    color: var(--accent-orange);
    text-decoration: none;
    border: 2px solid var(--accent-orange);
    padding: 8px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.tool-link:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background-color: var(--secondary-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-gray);
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--primary-dark);
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about img {
    max-height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-gray);
}

.footer-links h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
    color: var(--text-gray);
}

/* ===== Live Chat ===== */
.live-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-button {
    background-color: var(--accent-orange);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.chat-button:hover {
    background-color: var(--accent-orange-hover);
    transform: scale(1.05);
}

/* ===== Responsive Styles ===== */

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    
    .hero-wrapper,
    .sports-wrapper,
    .family-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image,
    .sports-image,
    .family-image {
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (576px - 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--border-gray);
    }
    
    .main-navigation.active ul {
        display: flex;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    
    .hero-title {
        font-size: 32px;
    }
    
    .price-box {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 42px;
    }
    
    .features-grid,
    .packages-grid,
    .steps-grid,
    .testimonials-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .device-channels-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-wrapper {
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 20px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Small Mobile (under 576px) */
@media (max-width: 576px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .price-currency,
    .price-period {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .feature-card,
    .package-card,
    .testimonial-card,
    .tool-card {
        padding: 25px 20px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .live-chat {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-button span {
        display: none;
    }
    
    .chat-button {
        padding: 15px;
        border-radius: 50%;
    }
    
    .chat-button:after {
        content: "💬";
        font-size: 20px;
    }
    
    .hero-image,
    .sports-image,
    .family-image {
        max-width: 100%;
    }
}