body { font-family: 'Roboto', sans-serif; background-color: #121212; color: #ffffff; }
body:has(.announcement-bar) { padding-top: 40px; }
h1, h2, h3, h4, h5, h6, .nav-link, .btn { font-family: 'Oswald', sans-serif; text-transform: uppercase; }
i.bi { vertical-align: middle; margin-right: 8px; }

/* --- Announcement Bar, Header, Buttons, etc. (Existing Styles) --- */
.announcement-bar { background-color: #0d6efd; color: white; padding: 8px 0; position: fixed; top: 0; width: 100%; z-index: 1050; overflow: hidden; white-space: nowrap; }
.announcement-text { display: inline-block; padding-left: 100%; animation: scroll-left 25s linear infinite; }
@keyframes scroll-left { 0% { transform: translateX(0%); } 100% { transform: translateX(-100%); } }
.hero-section { background: url('https://via.placeholder.com/1920x1080/000000/FFFFFF?text=SPORT+BACKGROUND+IMAGE') no-repeat center center; background-size: cover; padding: 60px 0; position: relative; background-attachment: fixed; }
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); }
.hero-section .container { position: relative; z-index: 2; }
.top-contact-bar { text-align: center; margin-bottom: 40px; }
.top-contact-bar .btn { font-size: 1.1rem; padding: 10px 25px; }
.tutorial-page-contact { padding-bottom: 2rem; border-bottom: 1px solid #343a40; margin-bottom: 2rem; display: flex; justify-content: space-between; align-items: center; }
.hero-title { font-size: 3.5rem; font-weight: 700; text-shadow: 2px 2px 8px rgba(0,0,0,0.8); }
.stats-bar { display: flex; justify-content: center; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.stat-item h2 { font-size: 2.5rem; color: #0d6efd; margin: 0; }
.stat-item p { margin: 0; text-transform: uppercase; color: #adb5bd; }
#performance-guarantee { background-color: #1a1a1a; padding: 80px 0; border-top: 1px solid #343a40; border-bottom: 1px solid #343a40; }
.performance-card .icon-container { font-size: 50px; color: #0d6efd; margin-bottom: 25px; display: inline-block; }
.performance-card h3 { color: #ffffff; margin-bottom: 15px; }
.performance-card p { color: #adb5bd; font-size: 1rem; line-height: 1.6; }
.cta-button { background-color: #0d6efd; border: none; padding: 15px 30px; font-size: 1.2rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6); }
.section-title { font-size: 2.5rem; margin-bottom: 40px; position: relative; display: inline-block; }
.section-title::after { content: ''; width: 60px; height: 4px; background: #0d6efd; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }
#platform-carousel .carousel-item { text-align: center; }
.platform-logo { height: 50px; width: auto; margin: 0 20px; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; }
.platform-logo:hover { filter: grayscale(0%); opacity: 1; }
.content-card { border-radius: 8px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.content-card img { width: 100%; height: auto; display: block; }
.content-card:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.feature-card { background: #1e1e1e; padding: 30px; border-radius: 8px; height: 100%; border-top: 4px solid #0d6efd; transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); }
.feature-card .card-body, .feature-card .card-text { color: #ced4da; }
.feature-card .card-title, .feature-card .card-text strong { color: #ffffff; }
.pricing-table { border-radius: 8px; overflow: hidden; background-color: #1e1e1e; }
.accordion-item { background-color: #1e1e1e; }
footer { background-color: #1e1e1e; }
.modal-content { background-color: #1e1e1e; }
.accordion-body {color: #ffffff; }

/* --- Proactive Chat Popup Styles --- */
.proactive-chat-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    max-width: calc(100% - 40px);
    background: #2c2c2e;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 1060;
    padding: 20px;
    display: none; /* Hidden by default */
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}
.proactive-chat-popup.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}
.proactive-chat-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}
.agent-info { display: flex; align-items: center; margin-bottom: 15px; }
.agent-info img { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; border: 2px solid #0d6efd; }
.agent-details h5 { font-size: 1.1rem; margin: 0; text-transform: none; font-family: 'Roboto', sans-serif; font-weight: 700; color: #fff; }
.agent-details p { font-size: 0.85rem; margin: 0; color: #adb5bd; text-transform: none; }
.chat-message-container { min-height: 80px; } /* Reserve space */
.chat-message {
    background: #3a3a3c;
    padding: 15px;
    border-radius: 15px 15px 15px 0;
    color: #e5e5e7;
    font-size: 0.95rem;
    line-height: 1.5;
    display: none; /* Hidden until JS reveals it */
    position: relative;
}
.chat-message::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #3a3a3c;
    border-left: 0;
}
.chat-message strong { color: #58a6ff; font-weight: 700; }
.typing-indicator { padding: 15px; }
.typing-indicator span { width: 8px; height: 8px; margin: 0 2px; background-color: #8e8e93; border-radius: 50%; display: inline-block; animation: bounce 1.4s infinite ease-in-out both; }
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1.0); } }
.proactive-cta-btn {
    display: block;
    width: 100%;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: background-color 0.2s ease;
}
.proactive-cta-btn:hover { background-color: #1DAA53; color: white; }

/* --- Other Existing Styles --- */
.contact-bubble { position: fixed; bottom: 25px; right: 25px; z-index: 1040; background-color: #0d6efd; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4); transition: transform 0.3s ease; }
.contact-bubble:hover { transform: scale(1.1); }
.contact-bubble i { font-size: 28px; margin-right: 0; }
.modal-content { border: 1px solid #343a40; }
.modal-header { border-bottom-color: #343a40; }
.modal-header .modal-title { font-family: 'Oswald', sans-serif; color: #ffffff; }
.modal-body { color: #ced4da; }
.contact-btn-whatsapp { background-color: #25D366; color: white; border: none; }
.contact-btn-whatsapp:hover { background-color: #1DAA53; }
.contact-btn-telegram { background-color: #0088cc; color: white; border: none; }
.contact-btn-telegram:hover { background-color: #0077b3; }
.animated-button-container {
    position: relative;
    display: inline-block; /* Keeps container tight to the button */
}
.pointing-finger {
    position: absolute;
    top: -15px;
    left: 0px;
    font-size: 28px;
    color: #ffc107; /* A bright, attention-grabbing yellow */
    transform-origin: bottom left;
    transform: rotate(15deg);
    z-index: 10;
    pointer-events: none; /* VERY IMPORTANT: Allows clicks to go through to the button */
    animation: point-and-tap 1.5s ease-in-out infinite;
}

@keyframes point-and-tap {
    0% {
        transform: rotate(15deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(0.9) translate(5px, 5px); /* The "tapping" motion */
    }
    100% {
        transform: rotate(15deg) scale(1);
    }
}
/* Responsive */
@media (max-width: 768px) {
    body:has(.announcement-bar) { padding-top: 35px; }
    #performance-guarantee, .hero-section { padding: 60px 0; }
    .hero-title { font-size: 2.5rem; }
    .contact-bubble { bottom: 15px; right: 15px; }
    .proactive-chat-popup { left: 10px; right: 10px; width: auto; bottom: 10px; }
}
.logo-container {
    text-align: center;
    padding-bottom: 25px; /* Space below the logo */
}

.main-logo {
    max-width: 180px; /* Adjust as needed */
    max-height: 70px;  /* Adjust as needed */
    height: auto;      /* Maintain aspect ratio */
}

/* Adjust header layout to accommodate the new logo */
.hero-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.top-contact-bar {
    margin-bottom: 30px; 
}

/* On mobile, reduce spacing a bit */
@media (max-width: 768px) {
    .logo-container {
        padding-bottom: 20px;
    }
    .hero-section {
        padding-top: 30px;
    }
}

/* Testimonials */
#testimonials {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #e0e0e0;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: #ffffff;
}

/* Mobile Pricing Cards */
.pricing-card-mobile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.pricing-card-mobile.featured {
    border-color: #0d6efd;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
}

.pricing-card-header {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-duration {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.plan-badge {
    background: #0d6efd;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card-mobile.featured .plan-badge {
    background: #ffc107;
    color: #000;
}

.pricing-card-body {
    padding: 1.25rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.plan-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #aaa;
}

.plan-savings {
    color: #4caf50;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.plan-features li {
    color: #ccc;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.plan-features li i {
    color: #4caf50;
    margin-right: 0.5rem;
}

.multi-account-note {
    color: #999;
    font-size: 0.8rem;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.view-all-plans-link {
    text-decoration: underline;
}
/* Devices Grid */
.devices-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100px;
    padding: 1.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.device-item:hover {
    transform: translateY(-4px);
    border-color: #0d6efd;
}

.device-item i {
    font-size: 2rem;
    color: #0d6efd;
}

.device-item span {
    color: #ccc;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 576px) {
    .devices-grid {
        gap: 1rem;
    }
    .device-item {
        width: 80px;
        padding: 1rem 0.5rem;
    }
    .device-item i {
        font-size: 1.5rem;
    }
}
/* Hero Section Background */
.hero-section {
    position: relative;
    background: 
        linear-gradient(180deg, rgba(10, 10, 30, 0.7) 0%, rgba(10, 10, 30, 0.85) 50%, rgba(10, 10, 30, 1) 100%),
        url('https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

/* Optional: animated subtle glow effect behind the hero content */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Performance Guarantee Section Background */
#performance-guarantee {
    position: relative;
    background:
        linear-gradient(135deg, rgba(10, 10, 30, 0.92) 0%, rgba(22, 33, 62, 0.95) 100%),
        url('https://images.unsplash.com/photo-1489944440615-453fc2b6a9a9?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    padding: 5rem 0;
}

/* Testimonials Section Background */
#testimonials {
    position: relative;
    background:
        linear-gradient(180deg, rgba(10, 10, 30, 0.93) 0%, rgba(15, 20, 40, 0.95) 100%),
        url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    padding: 5rem 0;
}
