/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 { font-size: 2.5rem; }
.subtitle { font-size: 1.125rem; opacity: 0.9; }

/* Packages */
.base-package, .decoders, .digital-packages { padding: 40px 0; }
.decoders, .digital-packages { background: #f9fafb; }
h2 { text-align: center; margin-bottom: 30px; color: #1e40af; }

.package-box, .decoder-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #e5e7eb;
    transition: 0.3s;
    position: relative;
}

.package-box:hover { transform: translateY(-3px); border-color: #3b82f6; }
.package-box.base { border: 3px solid #1e40af; background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.package-box.premium-box { border: 3px solid #3b82f6; }
.decoder-box.featured { border: 3px solid #10b981; }

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.decoder-box .badge { background: #10b981; }

.package-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price, .price-big {
    font-size: 2rem;
    font-weight: bold;
    color: #ef4444;
    margin: 15px 0;
}

.price span, .price-big span { font-size: 0.875rem; color: #6b7280; }

h3 { color: #1e40af; margin-bottom: 15px; }
.model { color: #6b7280; font-size: 0.875rem; }

/* Grids */
.decoder-grid, .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Lists */
.channels-list, .decoder-box ul { list-style: none; padding: 0; }
.channels-list li, .decoder-box ul li { padding: 6px 0; color: #374151; }

.ch {
    display: inline-block;
    background: #1e40af;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 8px;
    min-width: 50px;
    text-align: center;
}

/* Pick-Pack */
.pickpack-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #fbbf24;
    margin: 30px 0;
}

.price-large { font-size: 3rem; font-weight: bold; color: #ef4444; }
.price-large span { font-size: 1.25rem; color: #6b7280; }

/* Adult */
.adult-packages { margin-top: 40px; padding-top: 40px; border-top: 2px solid #e5e7eb; }
.adult-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.package-box.adult { background: #fee; border-color: #dc2626; }

/* CTA */
.cta {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta h2 { color: white; }

/* Channels BASE with logos */
.channels-base { padding: 60px 0; background: white; }
.channels-base h2 { color: #1e40af; margin-bottom: 40px; }

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

.channel-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.channel-card img {
    width: 80px;
    height: 50px;
    object-fit: contain;
}

.ch-num {
    background: #1e40af;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.ch-name {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
    text-align: center;
}

/* Pick-pack channels display */
.pickpack-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.pick-ch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    border: 2px solid #fbbf24;
    font-size: 0.9rem;
    color: #374151;
}

/* Responsive */
@media (max-width: 768px) {
    .packages-grid, .decoder-grid { grid-template-columns: 1fr; }
    .package-content { flex-direction: column; text-align: center; }
    .channels-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}
