/* ============================================================
   BLACK DRAGONS - SINGLE SHARED STYLESHEET
   Loaded once by Site.master on every page. All page markup
   (Default.aspx, AboutUs.aspx, Blogs.aspx, Events.aspx,
   MembersArea.aspx) references classes defined in this file.
   ============================================================ */

/* ----------------------------------------------------
   1. DESIGN SYSTEM & RESET
---------------------------------------------------- */
:root {
    --bg-dark: #000000;
    --bg-surface: #101010;
    --bg-card: #1c1c1c;
    --primary-red: #e60000;
    --metallic-white: #e0e0e0;
    --hover-red: #ff2a2a;
    --text-main: #ffffff;
    --text-muted: #999999;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-header: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ----------------------------------------------------
   2. NAVIGATION BAR
---------------------------------------------------- */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: rgba(0, 0, 0, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(230, 0, 0, 0.4);
    z-index: 1000;
}

.logo-text {
    font-family: var(--font-header);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--metallic-white);
}

    .logo-text span {
        color: var(--primary-red);
    }

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

    .nav-links a {
        color: var(--text-main);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-red);
        }

.social-link-fb {
    display: flex;
    align-items: center;
    justify-content: center;
    fill: #ffffff;
    transition: fill 0.3s ease, transform 0.3s ease;
    margin-left: 5px;
}

    .social-link-fb:hover {
        fill: var(--primary-red);
        transform: translateY(-2px);
    }

.cta-btn {
    background: var(--primary-red);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

    .cta-btn:hover {
        background: var(--hover-red);
        box-shadow: 0 6px 20px rgba(230, 0, 0, 0.5);
        transform: translateY(-2px);
    }

/* ----------------------------------------------------
   3. SUB-HERO BANNER (About Us, Blogs, Events, Members Area)
---------------------------------------------------- */
.sub-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 60px 20px;
    background-image: url('https://i.ibb.co/1YLg299R/2150367636.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .sub-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 50%, #000000 100%);
        z-index: 1;
    }

    .sub-hero .large-logo {
        position: relative;
        z-index: 2;
        max-width: 140px;
        width: 100%;
        margin-bottom: 20px;
    }

    .sub-hero .page-title {
        position: relative;
        z-index: 2;
        font-family: var(--font-header);
        font-size: 4rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95);
    }

        .sub-hero .page-title span {
            color: var(--primary-red);
        }

/* ----------------------------------------------------
   4. SECTION / SECTION TITLE (shared page-content wrapper)
---------------------------------------------------- */
.section {
    padding: 60px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-header);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: var(--metallic-white);
}

    .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 50px;
        height: 4px;
        background-color: var(--primary-red);
    }

/* ----------------------------------------------------
   5. ENQUIRY / CONTACT FORM STYLING
   (used on Home, About Us, Blogs, Events)
---------------------------------------------------- */
.enquiry-container {
    background: var(--bg-surface);
    border: 1px solid rgba(230, 0, 0, 0.2);
    border-radius: 8px;
    padding: 40px 30px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

    .enquiry-container h3 {
        font-family: var(--font-header);
        font-size: 1.8rem;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 25px;
        color: var(--text-main);
        line-height: 1.3;
    }

        .enquiry-container h3 span {
            color: var(--primary-red);
        }

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

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
        color: var(--text-muted);
        font-weight: 600;
    }

    .form-group input,
    .form-group select {
        background: #161616;
        border: 1px solid var(--border-color);
        padding: 14px 16px;
        border-radius: 6px;
        color: #fff;
        font-family: var(--font-body);
        font-size: 16px;
        transition: all 0.3s ease;
        -webkit-appearance: none;
        width: 100%;
    }

    .form-group select {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999999' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
        background-repeat: no-repeat;
        background-position: calc(100% - 15px) center;
        padding-right: 40px;
    }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-red);
            background: #1c1c1c;
            box-shadow: 0 0 8px rgba(230, 0, 0, 0.2);
        }

.form-submit-btn {
    grid-column: span 2;
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 16px;
    font-family: var(--font-header);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease;
    margin-top: 10px;
}

    .form-submit-btn:hover {
        background: var(--hover-red);
    }

.form-success-message {
    grid-column: span 2;
    text-align: center;
    color: #4be07a;
    font-weight: 600;
    margin-top: 10px;
}

.field-error {
    color: var(--hover-red);
    font-size: 0.8rem;
    margin-top: 6px;
    display: block;
}

/* ----------------------------------------------------
   6. LOCATION / MAP (shared "Find Our Academy" block)
---------------------------------------------------- */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.location-details h3 {
    font-family: var(--font-header);
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 20px;
}

    .location-details h3 span {
        color: var(--primary-red);
    }

.detail-block {
    margin-bottom: 25px;
}

    .detail-block label {
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--primary-red);
        font-weight: 700;
        margin-bottom: 5px;
    }

    .detail-block p,
    .detail-block a {
        font-size: 1.15rem;
        color: var(--text-main);
        text-decoration: none;
    }

    .detail-block a {
        transition: color 0.2s ease;
        font-weight: 600;
    }

        .detail-block a:hover {
            color: var(--hover-red);
        }

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(1) invert(1) contrast(1.2);
    }

/* ----------------------------------------------------
   7. HOME - HERO SECTION
---------------------------------------------------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 180px 20px 80px 20px;
    background-image: url('https://i.ibb.co/1YLg299R/2150367636.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 60%, #000000 100%);
        z-index: 1;
    }

    .hero .large-logo {
        position: relative;
        z-index: 2;
        max-width: 250px;
        width: 100%;
        margin-bottom: 25px;
    }

    .hero .brand-title {
        position: relative;
        z-index: 2;
        font-family: var(--font-header);
        font-size: 4.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 1.1;
        margin-bottom: 15px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95);
    }

        .hero .brand-title .main-text {
            color: var(--metallic-white);
            font-weight: 700;
        }

        .hero .brand-title .red-text {
            color: var(--primary-red);
            font-weight: 700;
        }

    .hero .disciplines {
        position: relative;
        z-index: 2;
        color: #ffffff;
        font-size: 1.6rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 30px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
    }

/* ----------------------------------------------------
   8. HOME - WELCOME BOX & COACH BIO
---------------------------------------------------- */
.welcome-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-red);
    border-radius: 8px;
    padding: 40px;
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.welcome-image-container {
    flex: 0 0 300px;
    max-width: 300px;
    height: 380px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background: #161616;
}

    .welcome-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.welcome-content {
    flex: 1;
}

    .welcome-content h2 {
        font-family: var(--font-header);
        font-size: 2.2rem;
        text-transform: uppercase;
        color: var(--text-main);
        margin-bottom: 10px;
    }

        .welcome-content h2 span {
            color: var(--primary-red);
        }

    .welcome-content .coach-title {
        color: var(--primary-red);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.95rem;
        margin-bottom: 20px;
        display: block;
    }

    .welcome-content p {
        color: var(--text-muted);
        font-size: 1.05rem;
        margin-bottom: 15px;
    }

/* ----------------------------------------------------
   9. HOME - RESPONSIVE EMBEDDED VIDEO
---------------------------------------------------- */
.video-section {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ----------------------------------------------------
   10. HOME - TIMETABLE
---------------------------------------------------- */
.timetable-group {
    margin-bottom: 50px;
}

.timetable-age-title {
    color: var(--metallic-white);
    font-family: var(--font-header);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-red);
}

.timetable-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 25px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

    .timetable-card:hover {
        border-color: var(--primary-red);
        background: rgba(230, 0, 0, 0.04);
        transform: scale(1.015) translateX(5px);
        box-shadow: 0 5px 20px rgba(230, 0, 0, 0.1);
    }

.timetable-card-info h3 {
    color: var(--metallic-white);
    font-family: var(--font-header);
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.timetable-card-info .discipline {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timetable-time-slot {
    text-align: right;
}

    .timetable-time-slot .day {
        color: var(--text-main);
        font-weight: 600;
        font-size: 1.1rem;
        text-transform: uppercase;
        margin-bottom: 5px;
        display: block;
    }

    .timetable-time-slot .time-range {
        background: rgba(230, 0, 0, 0.1);
        color: var(--primary-red);
        padding: 6px 15px;
        border-radius: 4px;
        font-weight: 700;
        font-size: 1rem;
        display: inline-block;
        transition: all 0.2s ease;
    }

.timetable-card:hover .time-range {
    background: var(--primary-red);
    color: #ffffff;
}

/* ----------------------------------------------------
   11. ABOUT US - NARRATIVE LAYOUT
---------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text strong {
    color: #ffffff;
}

.benefits-list {
    list-style: none;
    margin: 25px 0 35px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

    .benefit-item svg {
        fill: var(--primary-red);
        flex-shrink: 0;
    }

.programs-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.programs-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-row {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-red);
    border-radius: 0 8px 8px 0;
    padding: 35px;
}

    .program-row h3 {
        font-family: var(--font-header);
        font-size: 1.8rem;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: var(--text-main);
    }

    .program-row p {
        font-size: 1.05rem;
        color: var(--text-muted);
        line-height: 1.6;
    }

.fight-team-image-container {
    position: sticky;
    top: 120px;
    width: 100%;
    height: auto;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .fight-team-image-container:hover {
        transform: translateY(-5px);
        border-color: rgba(230, 0, 0, 0.4);
    }

    .fight-team-image-container img {
        width: 100%;
        height: auto;
        object-fit: cover;
        filter: grayscale(1);
        transition: filter 0.4s ease, transform 0.4s ease;
    }

    .fight-team-image-container:hover img {
        filter: grayscale(0);
        transform: scale(1.02);
    }

.about-showcase {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
}

    .about-showcase h3 {
        font-family: var(--font-header);
        font-size: 1.8rem;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: var(--text-main);
    }

        .about-showcase h3 span {
            color: var(--primary-red);
        }

.stat-list {
    list-style: none;
    margin-top: 25px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.05rem;
}

    .stat-item span:first-child {
        color: var(--text-muted);
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .stat-item span:last-child {
        color: var(--primary-red);
        font-weight: 700;
        text-align: right;
    }

/* ----------------------------------------------------
   12. BLOGS & EVENTS - CHRONOLOGICAL FEED COMPONENTS
   (blog-* and event-* rules share the same layout)
---------------------------------------------------- */
.blog-feed-container,
.event-feed-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

.blog-card,
.event-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1fr;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .blog-card:hover,
    .event-card:hover {
        transform: translateY(-3px);
        border-color: rgba(230, 0, 0, 0.3);
    }

.blog-thumbnail-wrapper,
.event-thumbnail-wrapper {
    width: 100%;
    height: 100%;
    min-height: 240px;
    overflow: hidden;
    background: #161616;
    position: relative;
}

    .blog-thumbnail-wrapper img,
    .event-thumbnail-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(1);
        transition: filter 0.4s ease, transform 0.4s ease;
    }

.blog-card:hover .blog-thumbnail-wrapper img,
.event-card:hover .event-thumbnail-wrapper img {
    filter: grayscale(0);
    transform: scale(1.03);
}

.blog-content-area,
.event-content-area {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta,
.event-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

    .blog-meta .date,
    .event-meta .location {
        color: var(--text-muted);
    }

    .event-meta .date-badge {
        color: #ffffff;
        background: rgba(230, 0, 0, 0.15);
        padding: 2px 10px;
        border-radius: 4px;
        border: 1px solid rgba(230, 0, 0, 0.3);
    }

.blog-content-area h2,
.event-content-area h2 {
    font-family: var(--font-header);
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
}

.blog-excerpt,
.event-excerpt {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-full-text,
.event-full-text {
    display: none;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.event-details-list {
    list-style: none;
    margin: 15px 0;
    padding-left: 5px;
}

    .event-details-list li {
        margin-bottom: 8px;
        display: flex;
        gap: 10px;
        font-size: 0.95rem;
    }

        .event-details-list li strong {
            color: var(--metallic-white);
            min-width: 90px;
        }

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-red);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

    .read-more-btn:hover {
        color: var(--hover-red);
    }

/* ----------------------------------------------------
   13. MEMBERS AREA - LOGIN & APP DOWNLOAD
---------------------------------------------------- */
.portal-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.auth-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-red);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

    .auth-container h2 {
        font-family: var(--font-header);
        font-size: 2.2rem;
        text-transform: uppercase;
        color: var(--text-main);
        margin-bottom: 10px;
    }

        .auth-container h2 span {
            color: var(--primary-red);
        }

.auth-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-group {
    display: flex;
    flex-direction: column;
}

    .auth-group label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
        color: var(--text-muted);
        font-weight: 600;
    }

    .auth-group input {
        background: #161616;
        border: 1px solid var(--border-color);
        padding: 14px 16px;
        border-radius: 6px;
        color: #fff;
        font-family: var(--font-body);
        font-size: 16px;
        transition: all 0.3s ease;
        width: 100%;
    }

        .auth-group input:focus {
            outline: none;
            border-color: var(--primary-red);
            background: #1c1c1c;
            box-shadow: 0 0 8px rgba(230, 0, 0, 0.2);
        }

.forgot-link-wrapper {
    text-align: right;
    margin-top: -5px;
}

    .forgot-link-wrapper a {
        color: var(--text-muted);
        font-size: 0.9rem;
        text-decoration: none;
        transition: color 0.2s ease;
        background: none;
        border: none;
        cursor: pointer;
    }

        .forgot-link-wrapper a:hover {
            color: var(--primary-red);
        }

.auth-submit-btn {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 16px;
    font-family: var(--font-header);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .auth-submit-btn:hover {
        background: var(--hover-red);
    }

.app-showcase-box {
    background: var(--bg-surface);
    border: 1px solid rgba(230, 0, 0, 0.2);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

    .app-showcase-box h3 {
        font-family: var(--font-header);
        font-size: 1.8rem;
        text-transform: uppercase;
        color: var(--text-main);
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

        .app-showcase-box h3 span {
            color: var(--primary-red);
        }

    .app-showcase-box p {
        font-size: 1.05rem;
        color: var(--text-muted);
        margin-bottom: 25px;
        line-height: 1.6;
    }

.app-install-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .app-install-btn:hover {
        background: var(--hover-red);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(230, 0, 0, 0.5);
    }

.ios-alert-message {
    background: #080808;
    border-left: 4px solid #333333;
    padding: 20px;
    border-radius: 0 6px 6px 0;
    font-size: 0.95rem;
}

    .ios-alert-message strong {
        color: #ffffff;
        display: block;
        margin-bottom: 8px;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

.ios-steps {
    list-style: none;
    padding-left: 0;
    color: var(--text-muted);
}

    .ios-steps li {
        margin-bottom: 6px;
        display: flex;
        gap: 8px;
    }

        .ios-steps li::before {
            content: '•';
            color: var(--primary-red);
        }

.support-footer-notice {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
}

    .support-footer-notice a {
        color: var(--primary-red);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease;
    }

        .support-footer-notice a:hover {
            color: var(--hover-red);
        }

.whatsapp-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366 !important;
    font-weight: 700;
    text-decoration: none;
    margin-left: 5px;
}

/* ----------------------------------------------------
   14. RESPONSIVE BREAKPOINTS (all pages, single breakpoint)
---------------------------------------------------- */
@media (max-width: 900px) {
    .header-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        position: relative;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .sub-hero {
        min-height: 35vh;
        padding-top: 140px;
    }

        .sub-hero .page-title {
            font-size: 2.6rem;
        }

    .hero {
        min-height: 70vh;
        padding-top: 140px;
    }

        .hero .brand-title {
            font-size: 2.4rem;
        }

        .hero .disciplines {
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

    .welcome-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .welcome-image-container {
        flex: none;
        width: 100%;
        height: 320px;
    }

    .enquiry-container {
        padding: 30px 20px;
        margin: 20px auto;
    }

        .enquiry-container h3 {
            font-size: 1.4rem;
        }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-submit-btn {
        grid-column: span 1;
        padding: 14px;
        font-size: 1.15rem;
    }

    .form-success-message {
        grid-column: span 1;
    }

    .timetable-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .timetable-time-slot {
        text-align: left;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }

    .map-container {
        height: 280px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fight-team-image-container {
        position: relative;
        top: 0;
    }

    .blog-card,
    .event-card {
        grid-template-columns: 1fr;
    }

    .blog-thumbnail-wrapper,
    .event-thumbnail-wrapper {
        height: 200px;
        min-height: auto;
    }

    .blog-content-area,
    .event-content-area {
        padding: 25px;
    }

        .blog-content-area h2,
        .event-content-area h2 {
            font-size: 1.6rem;
        }

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

    .auth-container, .app-showcase-box {
        padding: 30px 20px;
    }
}
