/* Import Barriecito Font */
@import url('https://fonts.googleapis.com/css2?family=Barriecito&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: #0088cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00aaff;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== NAVIGATION ===== */
.nav {
    background: #0d0d0d;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo img {
    height: 36px;
    width: auto;
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
}

.hero-logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.hero-tagline {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 8px;
}

.hero-sub {
    font-size: 1rem;
    color: #888;
}

/* ===== DEALS GRID ===== */
.deals-section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ===== DEAL CARD ===== */
.deal-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.15);
    border-color: #333;
}

.deal-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #fff;
    padding: 16px;
}

.deal-card-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 3rem;
}

.deal-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.deal-card-category {
    font-size: 0.75rem;
    color: #0088cc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.deal-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.deal-card-pricing {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.deal-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.deal-original-price {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
}

.deal-discount {
    display: inline-block;
    background: #e53e3e;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.deal-card-commentary {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.deal-card-footer {
    margin-top: auto;
}

.buy-button {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #FF9900 0%, #e68a00 100%);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}

.buy-button:hover {
    background: linear-gradient(135deg, #ffaa22 0%, #FF9900 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.5);
    color: #000;
}

/* ===== BEST DEALS PAGE ===== */
.best-deals-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
}

.best-deal-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: center;
    transition: border-color 0.3s;
}

.best-deal-item:hover {
    border-color: #FF9900;
}

.best-deal-rank {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 36px;
    height: 36px;
    background: #FF9900;
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.best-deal-image-wrap {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.best-deal-image {
    max-height: 160px;
    object-fit: contain;
}

.best-deal-placeholder {
    width: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 3rem;
}

.best-deal-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.best-deal-category {
    font-size: 0.75rem;
    color: #0088cc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.best-deal-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.best-deal-editorial {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
    font-style: italic;
}

.best-deal-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.best-deal-cta {
    align-self: flex-start;
}

/* ===== CHANNELS SECTION ===== */
.channels-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 12px;
    border: 1px solid #333;
    margin: 40px 0;
}

.channels-section > p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
}

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

.channel-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.channel-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.channel-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    width: 100%;
}

.qr-code {
    margin: 20px auto;
    max-width: 220px;
    width: 100%;
}

.qr-code img {
    border-radius: 8px;
    width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #0099dd 0%, #0077bb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
    color: #fff;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #2EE876 0%, #22C55E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 40px 20px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 12px;
    border: 1px solid #333;
    margin: 40px 0;
}

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

.feature {
    background: #1a1a1a;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: #0088cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.15);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature p {
    color: #ccc;
    font-size: 0.95rem;
}

/* ===== CONTENT PAGE (about, privacy) ===== */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #fff;
}

.page-content h2 {
    font-size: 1.4rem;
    margin: 32px 0 12px;
    color: #fff;
}

.page-content h3 {
    font-size: 1.15rem;
    margin: 24px 0 8px;
    color: #eee;
}

.page-content p {
    color: #ccc;
    margin-bottom: 16px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    color: #ccc;
    margin: 0 0 16px 24px;
    line-height: 1.8;
}

.page-content a {
    color: #0088cc;
}

.page-content a:hover {
    color: #00aaff;
    text-decoration: underline;
}

/* ===== DISCLOSURE SECTION ===== */
.disclosure {
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 40px 20px;
    margin: 40px 0;
}

.disclosure h2 {
    margin-bottom: 20px;
    text-align: center;
}

.disclosure p {
    color: #aaa;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid #222;
    padding: 40px 20px;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclosure {
    font-size: 0.8rem;
    color: #888;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: #0088cc;
    margin: 0 12px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #00aaff;
    text-decoration: underline;
}

.footer-copy {
    color: #666;
    font-size: 0.8rem;
}

/* ===== NO DEALS STATE ===== */
.no-deals {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #0d0d0d;
        border-bottom: 1px solid #222;
        flex-direction: column;
        padding: 16px 20px;
        gap: 12px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .deals-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }

    .best-deal-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .best-deal-image-wrap {
        max-width: 200px;
        margin: 0 auto;
    }

    .best-deal-cta {
        align-self: center;
    }

    .channels-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .cta-button {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

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

    .hero {
        padding: 40px 10px 30px;
    }

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