.btn-tickets {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;          /* reduced from 14px 36px */
    background: var(--gradient-red);
    color: #fff;
    font-weight: 600;            /* slightly lighter */
    font-size: 12px;             /* reduced from 14px */
    text-transform: uppercase;
    letter-spacing: 1.2px;       /* reduced spacing */
    border: none;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.btn-tickets::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.35),
        transparent 70%
    );
    transform: translateX(-120%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.groups-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Reset rule list layout */
.rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each rule = single flow line */
.rule-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 100%;
}

/* Rule number badge */
.rule-point {
    flex-shrink: 0;
    background: var(--primary-red);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure text flows naturally */
.rule-list li strong,
.rule-list li span,
.rule-list li {
    white-space: normal;
    word-break: normal;
}

/* Prevent highlighted words from breaking layout */
.rule-list li strong {
    display: inline;
    color: #fff;
    font-weight: 700;
}

.rules-contact-section a.btn i,
.rules-contact-section a.btn span {
    color: var(--logo-red) !important;
}

/* Optional hover state */
.rules-contact-section .btn:hover,
.rules-contact-section .btn:hover i,
.rules-contact-section .btn:hover span {
    color: var(--logo-red);
}
.merch-card-big .merch-image {
    height: 420px;
}

        
@media (max-width: 1024px) {
    .navbar.scrolled {
        padding: 5px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-medium);
        color: white;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-tickets {
        font-size: 11px;
        padding: 8px 18px;
    }

    .nav-link {
        color: var(--text-white);
    }
    
    /*.btn-tickets span {*/
    /*    display: none;*/
    /*}*/
}

.team-principles-group {
    animation: fadeInUp 0.6s ease-out;
}

.group-header-section {
    position: relative;
    padding-bottom: 20px;
}

.group-header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.owner-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: var(--secondary-dark);
}

.owner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
}

.owner-image {
    aspect-ratio: 1;
    transition: all 0.3s ease;
}

.owner-card:hover .owner-image {
    transform: scale(1.05);
}

.owner-info {
    padding: 20px 15px;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .owners-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .owners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .group-title {
        font-size: 1.5rem !important;
    }
    
    .groups-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 480px) {
    .owners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .team-principles-group {
        margin-bottom: 40px !important;
    }
}
    
/* Force visual separation after hero */
.owners-section {
    position: relative;
    z-index: 2;
    background: var(--primary-dark);
}

/* Give breathing room from hero */
.owners-section:first-of-type {
    margin-top: 80px;
}
.team-dropdown .owners-grid {
    max-width: 900px;
    margin: 40px auto 0;
    justify-content: center;
}


.groups-grid-teams{
    grid-template-columns: 1fr;
    max-width: 1100px;
    margin: 0 auto;
}
