:root {
    --sky-blue: #a3c4d8;
    --navy-dark: #021734;
    --gold-accent: #D19B32; /* Official Staardom Gold Color */
    --gold-glow: rgba(209, 155, 50, 0.4);
}

/* Global Reset for Instant Load */
*, *::before, *::after {
    animation: none !important;
    transition: none !important;
}

/* Page atmospheric gradient */
body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--navy-dark);
    background: linear-gradient(180deg, 
        #f7f7f5 0%, 
        #e8efee 35%, 
        #c1d6e3 70%, 
        #9bbbc9 100%
    );
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* RELATIVE FLOW: Ensures native smooth scrolling on mobile & desktop */
.brand-intro-section {
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    padding: 40px 0 80px 0;
}

.intro-container {
    width: 95%;
    max-width: 1200px;
    text-align: center;
    padding: 0 15px;
    margin: 0 auto;
}

/* 1. MAIN TITLE CONTAINER */
.main-brand-title {
    color: var(--gold-accent) !important;
    font-size: clamp(28px, 5.5vw, 56px);
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 80px;
    margin-bottom: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2px, 0.5vw, 4px);
    letter-spacing: clamp(1px, 0.4vw, 4px);
    opacity: 1 !important;
    transform: none !important;
}

/* Letter-by-letter styling for Main Title */
.main-brand-title .main-letter {
    display: inline-block;
    opacity: 1 !important;
    transform: none !important;
}

/* 2. SUB-BRANDS GRID */
.sub-brands-wrapper {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    gap: clamp(5px, 1.5vw, 15px);
    width: 100%;
    margin-bottom: 45px;
}

.sub-brand-item {
    flex: 1;
    font-size: clamp(8px, 1.8vw, 24px);
    font-weight: 400;
    color: var(--gold-accent) !important;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    opacity: 1 !important;
    transform: none !important;
    gap: clamp(0.5px, 0.15vw, 2px);
    letter-spacing: clamp(0px, 0.15vw, 2px);
}

.sub-brand-item a {
    color: inherit !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.sub-brand-item a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px var(--gold-accent);
}

.sub-brand-item.item-left {
    justify-content: flex-start;
    text-align: left;
}

.sub-brand-item.item-center {
    justify-content: center;
    text-align: center;
}

.sub-brand-item.item-right {
    justify-content: flex-end;
    text-align: right;
}

.sub-brand-item .letter {
    display: inline-block;
    opacity: 1 !important;
    transform: none !important;
}

.sub-brand-item .space {
    width: clamp(2px, 0.8vw, 10px);
    display: inline-block;
}

/* 3. UPCOMING EVENTS & POSTER SECTION */
.events-section {
    opacity: 1 !important;
    padding-top: 10px;
}

.events-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.events-header-line {
    height: 2px;
    flex: 1;
    max-width: 400px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    border: none;
    opacity: 0.8;
}

.events-header-title {
    color: var(--gold-accent);
    font-size: clamp(18px, 2.8vw, 30px);
    font-weight: 600;
    letter-spacing: clamp(2px, 0.5vw, 6px);
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 15px rgba(209, 155, 50, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.events-header-title .star-1 { font-size: 12px; }
.events-header-title .star-2 { font-size: 18px; }
.events-header-title .star-3 { font-size: 24px; }

.event-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(209, 155, 50, 0.4);
    background: rgba(2, 23, 52, 0.85);
    box-shadow: 0 15px 35px rgba(2, 23, 52, 0.25);
}

.event-card-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3 / 4;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* MOBILE RESPONSIVE OPTIMIZATION */
@media (max-width: 768px) {
    .brand-intro-section {
        padding-top: 15px;
    }

    .main-brand-title {
        margin-top: 80px;
        margin-bottom: 40px;
    }

    .sub-brand-item.item-left {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .sub-brand-item.item-center {
        justify-content: center !important;
        text-align: center !important;
    }

    .sub-brand-item.item-right {
        justify-content: flex-end !important;
        text-align: right !important;
    }

    .events-header-line {
        max-width: 40px;
    }

    .events-header-title { gap: 5px; }
    .events-header-title .star-1 { font-size: 9px; }
    .events-header-title .star-2 { font-size: 14px; }
    .events-header-title .star-3 { font-size: 19px; }
}

@media (max-width: 480px) {
    .events-header-title {
        gap: 3px;
        width: 100%;
    }

    .events-header-title .star-1 { font-size: 7px; }
    .events-header-title .star-2 { font-size: 11px; }
    .events-header-title .star-3 { font-size: 15px; }
}