/* ============================================
   FOOTBALL STREAMS PAGE - HERO VIDEO + SCHEDULE
   Clean Modern Design with Match Schedule List
   ============================================ */

/* ===== MAIN HERO BLOCK ===== */
.streams-hero-block {
    width: 100%;
    background: linear-gradient(180deg, #020F1D 0%, #041622 100%);
    padding: 60px 20px 80px;
}

.streams-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== HERO VIDEO SECTION ===== */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 580px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.2) 70%
    );
    z-index: 2;
}

.video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    background: rgba(255, 59, 59, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 59, 59, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 59, 59, 0.5);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 28px 0;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 520px;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #00AEEF 0%, #0088CC 100%);
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 174, 239, 0.6);
    background: linear-gradient(135deg, #00C3FF 0%, #0099DD 100%);
}

.hero-cta-button svg {
    width: 18px;
    height: 18px;
}

/* ===================================
   SCHEDULE SECTION STYLES
   =================================== */

.schedule-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px 80px;
}

/* ===================================
   SCHEDULE HEADING
   =================================== */

.schedule-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px rgba(0, 190, 255, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

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

/* ===================================
   MATCHES CONTAINER - NEW STRUCTURE
   =================================== */

.stream-matches-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
}

/* ===================================
   MATCH ITEM - PERFECT ALIGNMENT
   =================================== */

.stream-match-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(0, 15, 35, 0.7);
    border: 1px solid rgba(0, 190, 255, 0.15);
    border-radius: 8px;
    padding: 20px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.stream-match-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 190, 255, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
    z-index: 0;
}

.stream-match-item:hover {
    background: rgba(0, 25, 50, 0.85);
    border-color: rgba(0, 190, 255, 0.4);
    transform: translateX(2px);
}

.stream-match-item:hover::before {
    width: 100%;
}

/* ===================================
   TEAM SECTION - LEFT & RIGHT
   =================================== */

.stream-team-section {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 350px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.stream-team-left {
    justify-content: flex-start;
}

.stream-team-right {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

/* ===================================
   TEAM LOGO - PERFECT CIRCLE
   =================================== */

.stream-logo-wrapper {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 5px;
    transition: all 0.3s ease;
}

.stream-match-item:hover .stream-logo-wrapper {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.08);
}

.stream-team-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ===================================
   TEAM NAME - PERFECT ALIGNMENT
   =================================== */

.stream-team-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
    flex: 1;
    min-width: 0;
}

.stream-team-left .stream-team-name {
    text-align: left;
}

.stream-team-right .stream-team-name {
    text-align: right;
}

.stream-match-item:hover .stream-team-name {
    color: #00BFFF;
}

/* ===================================
   MATCH CENTER - DATE & TIME
   =================================== */

.stream-match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 160px;
    flex-shrink: 0;
    padding: 12px 24px;
    background: rgba(0, 190, 255, 0.12);
    border: 1px solid rgba(0, 190, 255, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stream-match-item:hover .stream-match-center {
    background: rgba(0, 190, 255, 0.18);
    border-color: rgba(0, 190, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 190, 255, 0.3);
}

/* ===================================
   DATE DISPLAY - VISIBLE & CLEAR
   =================================== */

.stream-match-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}

/* ===================================
   TIME DISPLAY - BOLD & PROMINENT
   =================================== */

.stream-match-time {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00E0FF;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}

/* ===================================
   NO MATCHES MESSAGE
   =================================== */

.stream-no-matches {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    padding: 60px 20px;
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (max-width: 768px) {
    .streams-hero-block {
        padding: 30px 15px 60px;
    }

    .hero-video-section {
        height: 450px;
        border-radius: 12px;
    }

    .hero-content {
        left: 25px;
        right: 25px;
        max-width: calc(100% - 50px);
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .schedule-section {
        padding: 0 15px 60px;
        margin-top: 40px;
    }


    .stream-match-item {
        padding: 18px 20px;
    }

    .stream-team-section {
        width: 240px;
        gap: 12px;
    }

    .stream-logo-wrapper {
        width: 40px;
        height: 40px;
        padding: 4px;
    }

    .stream-team-name {
        font-size: 0.9rem;
    }

    .stream-match-center {
        min-width: 130px;
        padding: 10px 18px;
    }

    .stream-match-date {
        font-size: 0.7rem;
    }

    .stream-match-time {
        font-size: 1.2rem;
    }
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */

@media (max-width: 480px) {
    .streams-hero-block {
        padding: 30px 15px 50px;
    }

    .hero-video-section {
        height: 400px;
        border-radius: 10px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-cta-button {
        padding: 11px 20px;
        font-size: 0.9rem;
        width: fit-content;
        white-space: nowrap;
    }

    .schedule-section {
        padding: 0 15px 50px;
        margin-top: 35px;
    }


    .stream-match-item {
        padding: 16px 15px;
        gap: 10px;
    }

    .stream-team-section {
        width: auto;
        flex: 1;
        min-width: 0;
        gap: 10px;
    }

    .stream-logo-wrapper {
        width: 36px;
        height: 36px;
        padding: 3px;
    }

    .stream-team-name {
        font-size: 0.85rem;
    }

    .stream-match-center {
        min-width: 90px;
        padding: 8px 12px;
        gap: 3px;
    }

    .stream-match-date {
        font-size: 0.65rem;
    }

    .stream-match-time {
        font-size: 1.05rem;
    }
}

/* ===================================
   EXTRA SMALL MOBILE
   =================================== */

@media (max-width: 360px) {
    .stream-match-item {
        padding: 14px 12px;
        gap: 8px;
    }

    .stream-logo-wrapper {
        width: 32px;
        height: 32px;
        padding: 2px;
    }

    .stream-team-name {
        font-size: 0.8rem;
    }

    .stream-match-center {
        min-width: 80px;
        padding: 6px 10px;
    }

    .stream-match-date {
        font-size: 0.6rem;
    }

    .stream-match-time {
        font-size: 0.95rem;
    }
}

/* ===================================
   HOVER EFFECTS & ANIMATIONS
   =================================== */

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 190, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 190, 255, 0.5);
    }
}

.stream-match-item:hover .stream-match-center {
    animation: glow 2s ease-in-out infinite;
}

/* ===================================
   ACCESSIBILITY & PRINT STYLES
   =================================== */

@media (prefers-reduced-motion: reduce) {
    .stream-match-item,
    .stream-logo-wrapper,
    .stream-team-name,
    .stream-match-center {
        transition: none;
    }
    
    .stream-match-item:hover .stream-match-center {
        animation: none;
    }
}

/* ===================================
   CONTENT SECTION STYLES
   =================================== */

.streams-content-section {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 20px 100px;
}

.content-block {
    margin-bottom: 80px;
}

.content-block:last-child {
    margin-bottom: 0;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

.content-h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 30px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
}

.content-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF 0%, #0088CC 100%);
    border-radius: 2px;
}

.content-h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00E0FF;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px 0;
}

.content-intro {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00BFFF;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ===================================
   INTRO BLOCK
   =================================== */

.intro-block {
    background: linear-gradient(135deg, rgba(0, 15, 40, 0.6) 0%, rgba(0, 30, 60, 0.6) 100%);
    border: 1px solid rgba(0, 190, 255, 0.2);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ===================================
   FEATURES GRID
   =================================== */

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

.feature-card {
    background: rgba(0, 15, 35, 0.8);
    border: 1px solid rgba(0, 190, 255, 0.15);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 190, 255, 0.08) 0%, transparent 100%);
    transition: width 0.3s ease;
    z-index: 0;
}

.feature-card:hover {
    border-color: rgba(0, 190, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 190, 255, 0.2);
}

.feature-card:hover::before {
    width: 100%;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: block;
    color: #00AEEF;
    filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.5));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 174, 239, 0.7));
}

.feature-card .content-h3 {
    position: relative;
    z-index: 1;
}

.feature-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00BFFF;
    font-weight: bold;
}

/* ===================================
   LEAGUES BLOCK
   =================================== */

.leagues-block {
    background: rgba(0, 20, 45, 0.5);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid rgba(0, 190, 255, 0.15);
}

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

.leagues-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leagues-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
    padding-left: 35px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.leagues-list li:hover {
    color: #00E0FF;
    padding-left: 40px;
}

.leagues-list li svg {
    position: absolute;
    left: 0;
    color: #00AEEF;
    flex-shrink: 0;
}


/* ===================================
   KEYWORDS CLOUD
   =================================== */

.keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.keyword {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00BFFF;
    background: rgba(0, 190, 255, 0.1);
    border: 1px solid rgba(0, 190, 255, 0.3);
    padding: 10px 18px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.keyword:hover {
    background: rgba(0, 190, 255, 0.2);
    border-color: rgba(0, 190, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 190, 255, 0.3);
}

/* ===================================
   OLD SITES BLOCK
   =================================== */

.old-sites-list {
    margin-top: 30px;
}

.old-site-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    margin-bottom: 12px;
    background: rgba(0, 15, 35, 0.6);
    border: 1px solid rgba(255, 59, 59, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.old-site-item:hover {
    background: rgba(0, 15, 35, 0.8);
    border-color: rgba(255, 59, 59, 0.4);
}

.old-site-item svg {
    color: #FF4444;
    flex-shrink: 0;
}

.site-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.site-status {
    font-size: 0.9rem;
    color: #FF6B6B;
    font-weight: 500;
    font-style: italic;
}

.old-sites-conclusion {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00E0FF;
    text-align: center;
    padding: 24px;
    background: rgba(0, 190, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(0, 190, 255, 0.2);
}

/* ===================================
   HOW TO WATCH STEPS
   =================================== */

.steps-container {
    margin-top: 40px;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 28px;
    background: rgba(0, 15, 35, 0.5);
    border: 1px solid rgba(0, 190, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(0, 25, 50, 0.7);
    border-color: rgba(0, 190, 255, 0.3);
    transform: translateX(8px);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    background: linear-gradient(135deg, #00AEEF 0%, #0088CC 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.4);
}

.step-content {
    flex: 1;
}

.step-content .content-h3 {
    margin-bottom: 8px;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   EXAMPLE MATCHES
   =================================== */

.example-matches {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.example-match {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: rgba(0, 15, 35, 0.7);
    border: 1px solid rgba(0, 190, 255, 0.15);
    border-radius: 10px;
    border-left: 3px solid #00AEEF;
    transition: all 0.3s ease;
}

.example-match:hover {
    background: rgba(0, 25, 50, 0.8);
    border-left-color: #00E0FF;
    border-color: rgba(0, 190, 255, 0.35);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 174, 239, 0.2);
}

.example-match svg {
    color: #00AEEF;
    flex-shrink: 0;
}

.match-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00E0FF;
    min-width: 100px;
    flex-shrink: 0;
}

.match-info {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.example-note {
    margin-top: 24px;
    padding: 20px;
    background: rgba(0, 190, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(0, 190, 255, 0.2);
    text-align: center;
    font-weight: 500;
}

/* ===================================
   LEGAL BLOCK
   =================================== */

.legal-block {
    background: rgba(0, 20, 45, 0.4);
    border-radius: 16px;
    padding: 40px;
    padding-left: 100px;
    border: 1px solid rgba(0, 190, 255, 0.12);
    position: relative;
}

.legal-icon {
    position: absolute;
    left: 30px;
    top: 50px;
    color: #00AEEF;
    filter: drop-shadow(0 0 15px rgba(0, 174, 239, 0.5));
}

.legal-block p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 0;
}

/* ===================================
   FAQ BLOCK
   =================================== */

.faq-block {
    background: rgba(0, 20, 50, 0.6);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid rgba(0, 190, 255, 0.15);
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: rgba(0, 30, 60, 0.4);
    border: 1px solid rgba(0, 174, 239, 0.2);
    border-radius: 12px;
    margin-bottom: 30px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 174, 239, 0.4);
    box-shadow: 0 4px 20px rgba(0, 174, 239, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00E0FF;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-answer {
    color: #CDE7FF;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.faq-answer ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.faq-answer ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00AEEF;
    font-weight: bold;
}

/* ===================================
   FINAL CTA BLOCK
   =================================== */

.final-cta-block {
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.15) 0%, rgba(0, 136, 204, 0.15) 100%);
    border: 2px solid rgba(0, 190, 255, 0.3);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0, 174, 239, 0.2);
}

.final-message {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.brand-tagline {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 190, 255, 0.3);
}

.brand-tagline strong {
    color: #00E0FF;
    font-weight: 800;
}

/* ===================================
   CONTENT RESPONSIVE - TABLET
   =================================== */

@media (max-width: 768px) {
    .streams-content-section {
        margin-top: 60px;
        padding: 0 15px 80px;
    }

    .content-block {
        margin-bottom: 60px;
    }

    .content-h2 {
        font-size: 1.8rem;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .content-h2::after {
        width: 60px;
        height: 3px;
    }

    .content-h3 {
        font-size: 1.15rem;
    }

    .content-intro {
        font-size: 1.1rem;
    }

    .intro-block {
        padding: 35px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 28px;
    }

    .leagues-block {
        padding: 35px;
    }

    .leagues-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-item {
        padding: 24px;
        gap: 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .final-cta-block {
        padding: 45px 30px;
    }

    .brand-tagline {
        font-size: 1.2rem;
    }
}

/* ===================================
   CONTENT RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 480px) {
    .streams-content-section {
        margin-top: 50px;
        padding: 0 15px 60px;
    }

    .content-block {
        margin-bottom: 50px;
    }

    .content-h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-bottom: 14px;
    }

    .content-h2::after {
        width: 50px;
    }

    .content-h3 {
        font-size: 1.05rem;
    }

    .content-block p {
        font-size: 1rem;
    }

    .content-intro {
        font-size: 1.05rem;
    }

    .intro-block {
        padding: 28px 22px;
        border-radius: 12px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .leagues-block {
        padding: 28px 22px;
    }

    .keywords-cloud {
        gap: 10px;
    }

    .keyword {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .old-site-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 20px;
    }

    .site-status {
        text-align: left;
    }

    .step-item {
        padding: 20px 16px;
        gap: 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .example-match {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 20px;
    }

    .match-time {
        font-size: 1rem;
        min-width: auto;
    }

    .match-info {
        font-size: 0.95rem;
    }

    .legal-block {
        padding: 28px 22px;
        padding-left: 22px;
    }

    .legal-icon {
        position: static;
        margin-bottom: 20px;
    }

    .faq-block {
        padding: 35px;
    }

    .faq-item {
        padding: 25px;
        margin-bottom: 25px;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 1rem;
    }

    .final-cta-block {
        padding: 35px 22px;
        border-radius: 16px;
    }

    .brand-tagline {
        font-size: 1.1rem;
        margin-top: 24px;
        padding-top: 24px;
    }
}

@media print {
    .hero-video-section,
    .hero-cta-button {
        display: none;
    }
    
    .stream-match-item {
        break-inside: avoid;
        border: 1px solid #333;
        background: white;
    }
    
    .stream-team-name,
    .stream-match-time {
        color: #000;
    }
}
