/* OSEC Alternative Design - Black & Pink Theme with Yellow Club Links */

:root {
    --primary-pink: #ff1493;
    --secondary-pink: #ff69b4;
    --light-pink: #ffb6c1;
    --dark-pink: #c71585;
    --yellow: #ffd700;
    --yellow-hover: #ffed4e;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Link Styles - Pink for hover, active and clicked */
a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-pink);
}

a:active,
a:focus {
    color: var(--primary-pink);
    outline: 2px solid rgba(255, 20, 147, 0.3);
    outline-offset: 2px;
}

a:visited:hover,
a:visited:active {
    color: var(--primary-pink);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Countdown Top Bar */
.countdown-top-bar {
    position: relative;
    background: #000000;
    border-bottom: 2px solid var(--primary-pink);
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    z-index: 999;
    margin-top: 90px;
}

.countdown-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.countdown-top-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.countdown-top-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.pulse-indicator-small {
    width: 10px;
    height: 10px;
    background: var(--primary-pink);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.countdown-separator {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.countdown-top-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-unit-small {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.time-value-small {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-pink);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.time-label-small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.time-colon {
    color: var(--primary-pink);
    font-size: 1.2rem;
    font-weight: 700;
}

.countdown-top-logo {
    flex-shrink: 0;
}

.countdown-top-logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-pink);
    object-fit: cover;
}

/* Integrated Header with Countdown - Static Position */
.integrated-header {
    position: static;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--primary-pink);
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    backdrop-filter: blur(20px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
}

/* Top Row: Countdown */
.countdown-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
    margin-bottom: 12px;
}

.countdown-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown-icon {
    font-size: 1.5rem;
    color: var(--primary-pink);
    animation: pulse 2s infinite;
}

.countdown-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.countdown-text strong {
    color: var(--primary-pink);
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.time-box {
    background: #000;
    border: 1px solid var(--primary-pink);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 55px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.3);
}

.time-value {
    font-family: 'Bangers', cursive;
    font-size: 1.1rem;
    color: var(--primary-pink);
    display: block;
    line-height: 1;
}

.time-label {
    font-size: 0.6rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bottom Row: Navigation */
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-pink);
}

.nav-link.active {
    color: var(--primary-pink);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-pink);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.donate-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

.donate-btn i {
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-full {
    min-height: auto;
    background: #000000;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 160px 20px 60px; /* Added top padding to account for fixed header */
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin: 0 -15px;
}

.hero-badge-alt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.hero-heading {
    font-family: 'Bangers', cursive;
    font-size: 80px;
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 5.5px;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.6);
}

/* Hero Content */
.hero-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

/* Hero Logo */
.hero-logo-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    text-align: center;
    position: relative;
}

.hero-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
    position: relative;
    transform: translate(-60px, -170px);
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.cta-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--light-gray);
    padding: 14px 33px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    transform: translateY(-3px);
}

.trust-indicators {
    display: flex;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 700;
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Countdown Box */
.hero-countdown-wrapper {
    display: flex;
    justify-content: center;
}

.countdown-box {
    background: #000;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.countdown-header-alt {
    text-align: center;
    margin-bottom: 30px;
}

.pulse-indicator {
    width: 12px;
    height: 12px;
    background: var(--primary-pink);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: pulse-alt 2s infinite;
}

@keyframes pulse-alt {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.7); }
    50% { opacity: 0.7; transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 20, 147, 0); }
}

.countdown-header-alt h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-bottom: 5px;
}

.countdown-header-alt p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.countdown-display {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.time-box {
    background: #000;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    min-width: 70px;
}

.time-value {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.time-unit {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.countdown-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.4);
    font-size: 0.9rem;
}

.countdown-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.6);
}

/* Ticker Bar - Design 2: Glowing Badge Style */
.ticker-bar {
    background: #000;
    padding: 20px 0;
    overflow: hidden;
}

.ticker-wrapper {
    background: #000;
    border: 2px solid #ff1493;
    border-radius: 50px;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5), inset 0 0 20px rgba(255, 20, 147, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticker-label-alt {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ticker-scroll {
    flex: 1;
    overflow: hidden;
}

.ticker-message {
    white-space: nowrap;
    animation: ticker-scroll 25s linear infinite;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .ticker-wrapper {
        border-radius: 0;
        padding: 12px 20px;
    }
}

/* Promo Banner - Design 2: Black with Neon Border */
.promo-banner-2 {
    background: #000;
    padding: 30px 0;
    border-top: 3px solid #ff1493;
    border-bottom: 3px solid #00bfff;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.promo-banner-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.promo-container-2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.promo-icon-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
    }
    50% { 
        box-shadow: 0 0 50px rgba(255, 20, 147, 0.9);
    }
}

.promo-content-2 {
    flex: 1;
}

.promo-content-2 h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff1493, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-content-2 p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.promo-button-2 {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.promo-button-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.6);
}

/* Section Styling */
.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 8px 18px;
    border-radius: 25px;
    color: var(--secondary-pink);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-heading {
    font-family: 'Bangers', cursive;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Clubs Section - Design 1 Style */
.clubs-alt-section {
    padding: 80px 0;
    background: #000;
}

.club-join-btn-compact i {
    font-size: 0.75rem;
}

.club-join-btn-compact:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.5);
    background: linear-gradient(135deg, var(--secondary-pink), var(--primary-pink));
}

.club-join-btn-compact:disabled {
    background: rgba(100, 100, 100, 0.5);
    cursor: not-allowed;
    opacity: 0.6;
}

.club-join-btn-compact:disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
}

/* Inline Status Button - Style 2: Solid Compact from test-button-variations.html */
.club-open-btn-inline {
    background: #ff1493;
    color: white;
    border: none;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 10px;
}

.club-open-btn-inline:hover {
    background: #ff69b4;
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.4);
}

/* Green for OPEN */
.club-open-btn-inline.status-open {
    background: #10b981;
    color: white;
}

.club-open-btn-inline.status-open:hover {
    background: #059669;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

/* Yellow for SOON/Coming Soon */
.club-open-btn-inline.status-soon {
    background: #f59e0b;
    color: white;
}

.club-open-btn-inline.status-soon:hover {
    background: #d97706;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* Red for FULL/CLOSED */
.club-open-btn-inline.status-full {
    background: #ef4444;
    color: white;
}

.club-open-btn-inline.status-full:hover {
    background: #dc2626;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* Disabled state */
.club-open-btn-inline:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.club-open-btn-inline:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Legacy clubs list styling (kept for compatibility) */
.clubs-list-alt {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.club-item-alt {
    background: #000;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.club-image-alt {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(0, 191, 255, 0.3));
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.club-image-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.4), rgba(0, 191, 255, 0.4));
    z-index: 1;
}

.club-content-wrapper {
    padding: 30px;
}

.club-item-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff1493, #00bfff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.club-item-alt:hover::before {
    opacity: 1;
}

.club-item-alt:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4);
}

.club-header-alt {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.club-topic-alt {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.club-level-badge-alt {
    background: linear-gradient(135deg, #00bfff, #0080ff);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.club-details-alt {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.club-detail-item-alt {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.club-detail-item-alt i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    width: 20px;
}

.club-footer-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 20, 147, 0.2);
}

.club-spots-alt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.club-spots-alt strong {
    color: #00bfff;
    font-size: 1.1rem;
}

.club-btn-alt {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.club-btn-alt:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
    color: #fff;
}

/* YELLOW LINKS FOR CLUBS */
.club-item-alt a:not(.club-btn-alt),
.club-item-alt a:not(.club-btn-alt):link,
.club-item-alt a:not(.club-btn-alt):visited {
    color: var(--yellow) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.club-item-alt a:not(.club-btn-alt):hover,
.club-item-alt a:not(.club-btn-alt):active {
    color: var(--yellow-hover) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .clubs-list-alt {
        grid-template-columns: 1fr;
    }
    
    .club-footer-alt {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .club-btn-alt {
        width: 100%;
        text-align: center;
    }
}

/* Courses Section */
.courses-alt-section {
    padding: 80px 0;
    background: #000;
}

/* Design 2: Horizontal Cards with Side Image */
.course-list-2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.course-card-2 {
    background: #000;
    border-radius: 25px;
    border: 2px solid rgba(255, 20, 147, 0.3);
    display: flex;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-card-2:hover {
    transform: translateX(10px);
    border-color: var(--primary-pink);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4);
}

.course-card-2 .image {
    width: 250px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(0, 191, 255, 0.3));
    background-size: cover;
    background-position: center;
    position: relative;
}

.course-card-2 .image .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.course-card-2 .content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card-2 h3 {
    font-family: 'Bangers', cursive;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
}

.course-card-2 .meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.course-card-2 .meta div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
}

.course-card-2 .meta i {
    color: var(--primary-pink);
}

.course-card-2 .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-card-2 .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
}

.course-card-2 button {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-card-2 button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
}

/* Legacy course card styles (kept for compatibility) */
.courses-wrapper-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.course-card-alt {
    background: #000;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.course-card-alt:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 50px rgba(255, 20, 147, 0.3);
}

.course-card-alt:hover::before {
    transform: scaleX(1);
}

/* Process Section - Design 1: Numbered Cards with Connecting Line */
.process-section {
    padding: 80px 0;
    background: #000;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #ff1493, #00bfff);
    z-index: 0;
}

.process-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 191, 255, 0.1));
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: #ff1493;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4);
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
    position: relative;
}

.process-card:nth-child(even) .process-number {
    background: linear-gradient(135deg, #00bfff, #0080ff);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.5);
}

.process-icon {
    font-size: 2rem;
    color: #ff1493;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.process-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process-grid::before {
        display: none;
    }
    
    /* Design 2 Responsive */
    .course-card-2 {
        flex-direction: column;
    }
    
    .course-card-2 .image {
        width: 100%;
        height: 200px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #000;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 50px rgba(255, 20, 147, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.4);
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ Section */
.faq-alt-section {
    padding: 80px 0;
    background: #000;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: #000;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--primary-pink);
}

.faq-q {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-q h3 {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-q i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-card.active .faq-q i {
    transform: rotate(45deg);
}

.faq-q:hover {
    color: var(--primary-pink);
}

.faq-a {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card.active .faq-a {
    padding: 0 30px 25px;
    max-height: 300px;
}

.faq-a p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #000;
}

.cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content-box {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(255, 20, 147, 0.4);
}

.cta-content-box h2 {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-pink);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 33px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-pink);
    transform: translateY(-3px);
}

/* Footer - Design 1: Classic Multi-Column with Black Background */
.footer-classic {
    background: #000000;
    padding: 60px 20px 20px;
    border-top: 3px solid #ff1493;
}

.footer-container-classic {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid-classic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column-classic h3 {
    font-family: 'Bangers', cursive;
    color: #ff1493;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-column-classic a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column-classic a:hover {
    color: #ff1493;
    padding-left: 5px;
}

.map-container-classic {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
}

.map-container-classic iframe {
    width: 100%;
    height: 100%;
}

.social-icons-classic {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons-classic a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons-classic a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
}

.footer-bottom-classic {
    border-top: 1px solid rgba(255, 20, 147, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom-classic p {
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content,
    .hero-logo-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
}

    
    .hero-cta-group,
    .trust-indicators {
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .header-container {
        padding: 12px 20px;
    }

    .countdown-row {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .countdown-timer {
        gap: 10px;
    }

    .time-box {
        min-width: 50px;
        padding: 5px 8px;
    }

    .time-value {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-row {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .countdown-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .countdown-timer {
        width: 100%;
        justify-content: space-between;
    }

    .time-box {
        flex: 1;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
    
    .countdown-display {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .promo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        padding: 12px 20px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .countdown-box {
        padding: 30px 20px;
    }
    
    .cta-content-box {
        padding: 40px 25px;
    }
    
    .cta-content-box h2 {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-pink);
}


/* Admin Panel Styles */
.admin-access {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink)) !important;
    color: var(--white) !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    border: none !important;
}

.admin-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.admin-modal-content {
    background: var(--dark-gray);
    margin: 2% auto;
    padding: 0;
    border: 2px solid var(--primary-pink);
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
}

.admin-modal-content.small {
    max-width: 600px;
}

.admin-header {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    padding: 20px 30px;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h2,
.admin-header h3 {
    margin: 0;
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
}

.admin-close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-close:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.admin-tabs {
    display: flex;
    background: var(--medium-gray);
    border-bottom: 2px solid rgba(255, 20, 147, 0.3);
}

.admin-tab-btn {
    flex: 1;
    background: transparent;
    color: var(--text-light);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.admin-tab-btn:hover,
.admin-tab-btn.active {
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary-pink);
    border-bottom-color: var(--primary-pink);
}

.admin-tab-content {
    display: none;
    padding: 30px;
}

.admin-tab-content.active {
    display: block;
}

.admin-section {
    margin-bottom: 30px;
}

.admin-section h3 {
    color: var(--white);
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-pink);
    padding-bottom: 10px;
}

.admin-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.admin-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-btn.primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.admin-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

.admin-btn.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--light-gray);
}

.admin-btn.secondary:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    transform: translateY(-2px);
}

.admin-btn.danger {
    background: #dc3545;
    color: var(--white);
}

.admin-btn.danger:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.admin-btn.small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.admin-list {
    background: var(--medium-gray);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.admin-item {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-pink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.admin-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.2);
}

.admin-item-info h4 {
    color: var(--white);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.admin-item-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.admin-item-actions {
    display: flex;
    gap: 10px;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.setting-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.setting-item label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.setting-item input,
.setting-item select {
    background: var(--medium-gray);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.setting-item input:focus,
.setting-item select:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.setting-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--medium-gray);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 20, 147, 0.2);
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.loading i {
    font-size: 2rem;
    color: var(--primary-pink);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .admin-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .admin-tabs {
        flex-direction: column;
    }
    
    .admin-tab-content {
        padding: 20px;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .admin-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .admin-item-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
}


/* Removed old club-card-alt styles - Using Design 1 only */

/* Course Table Styles */
.course-table-container-alt {
    background: var(--medium-gray);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.table-responsive {
    overflow-x: auto;
}

.course-table-alt {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.course-table-alt th {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-table-alt td {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
    color: var(--text-light);
    font-size: 0.95rem;
}

.course-table-alt tbody tr {
    transition: all 0.3s ease;
}

.course-table-alt tbody tr:hover {
    background: rgba(255, 20, 147, 0.05);
}

.course-table-alt tbody tr:last-child td {
    border-bottom: none;
}

.course-name-alt {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.course-level-alt {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.course-price-alt {
    font-weight: 700;
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.course-spots-alt {
    color: var(--text-light);
}

.course-spots-alt.low {
    color: #ffc107;
    font-weight: 600;
}

.course-spots-alt.full {
    color: #dc3545;
    font-weight: 600;
}

.course-enroll-btn-alt {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.course-enroll-btn-alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.course-enroll-btn-alt.disabled {
    background: var(--light-gray);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mobile Responsive for New Designs */
@media (max-width: 1024px) {
    .hero-main-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-logo-alt {
        width: 220px;
    }
    
    .hero-heading-alt {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-alt {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .countdown-box {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .clubs-list-alt {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .club-content-alt {
        padding: 20px;
    }
    
    .club-header-alt {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .club-level-badge-alt {
        margin-left: 0;
    }
    
    .club-meta-alt {
        flex-direction: column;
        gap: 8px;
    }
    
    .course-table-container-alt {
        padding: 20px;
    }
    
    .course-table-alt {
        font-size: 0.85rem;
    }
    
    .course-table-alt th,
    .course-table-alt td {
        padding: 12px 8px;
    }
    
    .course-table-alt th {
        font-size: 0.8rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-outline {
        width: 100%;
        justify-content: center;
    }
}


/* Countdown Top Bar */
.countdown-top-bar {
    background: #000;
    border-bottom: 2px solid var(--primary-pink);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.countdown-top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.countdown-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.countdown-top-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.countdown-top-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.pulse-indicator-small {
    width: 10px;
    height: 10px;
    background: var(--primary-pink);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--primary-pink);
}

.countdown-separator {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

#countdown-top-subtitle {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.9rem;
}

.countdown-top-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-unit-small {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.time-value-small {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-pink);
    font-family: 'Bangers', cursive;
    line-height: 1;
}

.time-label-small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.time-colon {
    color: var(--primary-pink);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 2px;
}

.countdown-top-logo {
    flex-shrink: 0;
}

.countdown-top-logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-pink);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.countdown-top-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

/* Responsive Countdown Top Bar */
@media (max-width: 768px) {
    .countdown-top-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .countdown-top-content {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .countdown-top-text {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .countdown-top-logo img {
        height: 50px;
    }
    
    .time-value-small {
        font-size: 1.5rem;
    }
}

/* Ticker Bar Styles */
.ticker-bar {
    background: #000;
    border-bottom: 1px solid var(--medium-gray);
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.ticker-label-alt {
    background: var(--primary-pink);
    color: var(--white);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ticker-scroll {
    flex: 1;
    overflow: hidden;
    padding: 12px 20px;
}

.ticker-message {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    color: var(--text-light);
    font-size: 0.95rem;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Promo Banner Styles */
.promo-banner {
    background: #000;
    padding: 30px 0;
    border-bottom: 2px solid var(--primary-pink);
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.promo-icon-large {
    font-size: 4rem;
    color: var(--primary-pink);
    flex-shrink: 0;
}

.promo-content {
    flex: 1;
}

.promo-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.promo-content h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.promo-content h3 a:hover {
    color: var(--primary-pink);
}

.promo-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.promo-cta {
    flex-shrink: 0;
}

.promo-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.promo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.5);
}

@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-icon-large {
        font-size: 3rem;
    }
    
    .promo-content h3 {
        font-size: 1.5rem;
    }
}


/* Hero Section - Black Background, No Neon */
.hero-full {
    background: #000000 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    position: relative;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 700px;
}

.hero-heading {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary, .cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.5);
}

.cta-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-pink);
}

.cta-outline:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

/* Hero Logo */
.hero-logo-wrapper {
    flex-shrink: 0;
}

.hero-logo {
    width: 400px;
    height: auto;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 20, 147, 0.6);
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-logo {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo {
        width: 250px;
    }
    
    .cta-primary, .cta-outline {
        padding: 14px 28px;
        font-size: 1rem;
    }
}


/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-logo-wrapper {
        order: 1;
    }
    
    .hero-heading {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-logo {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero-full {
        padding: 30px 20px 40px;
    }
    
    .hero-heading {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo {
        width: 220px;
        height: 220px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-outline {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   HERO SECTION - OSEC REBUILD DESIGN
   ======================================== */

.hero-sidebyside {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 0 20px 40px;
    position: relative;
    overflow: hidden;
}

.hero-content-1 {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 0;
}

.logo-badge {
    width: 540px;
    height: 540px;
    margin: 0 auto -80px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
    box-shadow: none;
}

.hero-sidebyside-heading {
    font-family: 'Bangers', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(90deg, #ff1493, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-sidebyside-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-sidebyside-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sidebyside-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.telegram-btn-sidebyside,
.cta-primary-sidebyside {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.telegram-btn-sidebyside i,
.cta-primary-sidebyside i {
    font-size: 1.3rem;
    display: inline-block;
}

.telegram-btn-sidebyside {
    background: linear-gradient(135deg, #00bfff, #0080ff);
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
}

.telegram-btn-sidebyside:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 191, 255, 0.6);
}

.cta-primary-sidebyside {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.cta-primary-sidebyside:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.6);
}

/* Mobile Responsive for Hero */
@media (max-width: 768px) {
    .hero-sidebyside-buttons {
        flex-direction: column;
        align-items: center;
    }

    .telegram-btn-sidebyside,
    .cta-primary-sidebyside {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .logo-badge {
        width: 300px;
        height: 300px;
    }
}

/* Removed CARD DESIGN 2 - Using Design 1 only */


/* Responsive Footer - Design 1 */
@media (max-width: 768px) {
    .footer-grid-classic {
        grid-template-columns: 1fr;
    }
    
    .map-container-classic {
        height: 250px;
    }
}


/* ==========================================
   CLUB CARD DESIGN 1: Neon Cards Grid
   ========================================== */

.clubs-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.club-card-1 {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 191, 255, 0.1));
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.club-card-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff1493, #00bfff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.club-card-1:hover::before {
    opacity: 1;
}

.club-card-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4);
}

.club-header-1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.club-topic-1 {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: #ff1493;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    line-height: 1.2;
}

.club-level-badge-1 {
    background: linear-gradient(135deg, #00bfff, #0080ff);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.club-details-1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.club-detail-item-1 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.club-detail-item-1 i {
    color: #ff1493;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.club-footer-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 20, 147, 0.2);
    gap: 15px;
    flex-wrap: wrap;
}

.club-spots-1 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.club-spots-1 strong {
    color: #00bfff;
    font-size: 1.1rem;
}

.club-btn-1 {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.club-btn-1:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
}

.club-btn-1:disabled {
    background: rgba(100, 100, 100, 0.5);
    cursor: not-allowed;
    opacity: 0.6;
}

.club-btn-1:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Status button variations for Design 1 */
.club-btn-1.status-soon {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.club-btn-1.status-full {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.club-btn-1.status-open {
    background: linear-gradient(135deg, #28a745, #20c997);
}

@media (max-width: 768px) {
    .clubs-grid-1 {
        grid-template-columns: 1fr;
    }
    
    .club-topic-1 {
        font-size: 1.5rem;
    }
    
    .club-footer-1 {
        flex-direction: column;
        align-items: stretch;
    }
    
    .club-btn-1 {
        width: 100%;
    }
}


/* Removed card-1 styles - Using club-card-1 for Design 1 only */

/* ============================================================
   ORIGINAL DEMO DESIGN 1 (from html.html)
   ############################################################
   Clean vertical card, image on top, meta rows, simple footer
   ============================================================ */

.card-design-1 .card-1 {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 10px 35px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.card-design-1 .card-1:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.5);
}

.card-design-1 .card-1 .image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-design-1 .card-1 .content {
    padding: 25px 30px;
}

.card-design-1 .card-1 h3 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
}

.card-design-1 .card-1 .meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.card-design-1 .card-1 .meta div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.card-design-1 .card-1 .meta i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.card-design-1 .card-1 .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 18px;
}

.card-design-1 .card-1 .footer span {
    color: #00bfff;
    font-weight: 600;
    font-size: 1rem;
}

.card-design-1 .card-1 button {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.card-design-1 .card-1 button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
}

/* Grid */
.card-design-1.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
/* FORCE DESIGN-1 CARD TO CORRECT WIDTH & BOX SHAPE */
.card-design-1 .card-1 {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;

    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 10px 35px rgba(255, 20, 147, 0.3);
}

/* FIX IMAGE NOT SHOWING */
.card-design-1 .card-1 .image {
    display: block;
    width: 100%;
    height: 220px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
/* FIX THE GRID SO CARDS DO NOT STRETCH WIDE */
.card-design-1.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    justify-items: center;
    gap: 30px;
}
/* ============================================================
   DESIGN 1 – ORIGINAL CARD FROM html.html
   ============================================================ */
.card-design-1 .card-1 {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 10px 35px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
}

.card-design-1 .card-1:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.5);
}

/* IMAGE MUST HAVE HEIGHT OR IT WILL NOT SHOW */
.card-design-1 .card-1 .image {
    width: 100%;
    height: 220px;
    display: block;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* CONTENT */
.card-design-1 .card-1 .content {
    padding: 25px 30px;
}

/* TITLE */
.card-design-1 .card-1 h3 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

/* META */
.card-design-1 .card-1 .meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.card-design-1 .card-1 .meta div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.card-design-1 .card-1 .meta i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

/* FOOTER */
.card-design-1 .card-1 .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 18px;
}

.card-design-1 .card-1 .footer span {
    color: #00bfff;
    font-weight: 600;
}

/* BUTTON */
.card-design-1 .card-1 button {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.card-design-1 .card-1 button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
}

/* GRID FIX (stops stretching) */
.card-design-1.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* ============================================
   FIX: Make REAL card images visible again
   (match html.html Design 1)
   ============================================ */

.club-card-1 .club-image-1 {
    width: 100%;
    height: 220px;          /* 🚀 this makes the image visible */
    display: block;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 20px 20px 0 0; /* matches Design 1 visual shape */
    overflow: hidden;
}
/* ============================================================
   FIX FOR LIVE SPEAKING CLUB CARDS
   Ensures images appear correctly in .club-card-1 structure
   ============================================================ */

.club-card-1 {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 10px 35px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.club-card-1:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.5);
}

/* 👇 THIS is the missing part */
.club-image-1 {
    width: 100%;
    height: 220px !important;   /* 🚀 REQUIRED FOR IMAGE TO SHOW */
    display: block;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Grid for new cards */
.card-design-1.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    justify-items: center;
}
/* FIX — ensure images show in Card Design 1 */
.club-image-1 {
    width: 100%;
    height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 12px 12px 0 0;
    display: block;
}
/* ============================================================
   DESIGN 1 — FIX FOR LIVE SPEAKING CLUB CARDS
   These classes are used by your JS output, but missing in CSS
   ============================================================ */

.club-card-1 {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 10px 35px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    max-width: 330px;
    margin: 0 auto;
}

.club-card-1:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.5);
}

/* 🔥 THIS IS THE REASON THE IMAGE WAS INVISIBLE */
.club-image-1 {
    width: 100%;
    height: 220px !important;   /* REQUIRED */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: block;
}

/* Header */
.club-header-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.club-topic-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bangers', cursive;
    color: #fff;
    font-size: 1.4rem;
}

.club-level-badge-1 {
    background: linear-gradient(135deg, #00bfff, #0080ff);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Details */
.club-details-1 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.club-detail-item-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
}

.club-detail-item-1 i {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

/* Footer */
.club-footer-1 {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.club-btn-1 {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.club-btn-1:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* Grid */
.card-design-1.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    justify-items: center;
}
/* ============================================================
   CLUB CARD DESIGN 1 — REQUIRED FOR IMAGES TO SHOW
   ============================================================ */

.club-card-1 {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 10px 35px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    max-width: 330px;
    margin: 0 auto;
}

.club-card-1:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.5);
}

/* 🔥 THIS IS THE CRITICAL PART */
.club-image-1 {
    width: 100%;
    height: 220px;                 /* REQUIRED */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: block;
    border-radius: 20px 20px 0 0;
}

/* Header */
.club-header-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Topic label */
.club-topic-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bangers', cursive;
    color: #fff;
    font-size: 1.4rem;
}

.club-level-badge-1 {
    background: linear-gradient(135deg, #00bfff, #0080ff);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Details */
.club-details-1 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.club-detail-item-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
}

.club-detail-item-1 i {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

/* Footer */
.club-footer-1 {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.club-btn-1 {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.club-btn-1:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* Grid layout */
.card-design-1.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    justify-items: center;
}
/* ================================================================
   NEW CLUB CARD DESIGN 1 — SQUARE IMAGE
   Fully isolated styles — safe to add at bottom of stylesheet
================================================================ */

.clubs-section-rewrite {
    padding: 80px 0;
    background: #000;
}

.clubs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* DESIGN 1: Image Top Card - From html.html */
.club-card-1-new {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.2);
    transition: all 0.3s ease;
}

.club-card-1-new:hover {
    transform: translateY(-10px);
    border-color: #ff1493;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4);
}

.club-image-1-new {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(0, 191, 255, 0.3));
    background-size: cover;
    background-position: center;
}

.club-content-1-new {
    padding: 25px;
}

.club-title-1-new {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: #ff1493;
    margin-bottom: 15px;
}

.club-meta-1-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.club-meta-item-1-new {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.club-meta-item-1-new i {
    color: #ff1493;
    margin-right: 6px;
    font-size: 1rem;
    min-width: 16px;
}

.club-footer-1-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,20,147,0.2);
}

.club-level-1-new {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
    animation: glow 2s ease-in-out infinite;
    display: inline-block;
}

.join-btn-1-new {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-btn-1-new:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
}

/* STATUS BUTTON COLORS FOR DESIGN 1 */
.join-btn-1-new.status-open {
    background: #10b981 !important; /* green */
    color: #fff !important;
}

.join-btn-1-new.status-soon {
    background: #f59e0b !important; /* yellow */
    color: #000 !important;
}

.join-btn-1-new.status-full {
    background: #ef4444 !important; /* red */
    color: #fff !important;
    opacity: 0.7;
    cursor: not-allowed;
}
/* =========================================================
   FIX FOR CLUB CARD BUTTON STATUSES
   (Must be at the bottom of the file)
========================================================= */

.join-btn.status-open {
    background: #10b981 !important; /* green */
    color: #fff !important;
}

.join-btn.status-soon {
    background: #f59e0b !important; /* yellow */
    color: #000 !important;
}

.join-btn.status-full {
    background: #ef4444 !important; /* red */
    color: #fff !important;
    opacity: 0.7;
    cursor: not-allowed;
}

.live-tracker {
    color: #fff;
    padding: 4px 0;
}
/* ----------------------------------------------------
   CLUB CARD DESIGN 1 (BLACK THEME) - NEW VERSION
---------------------------------------------------- */

.clubs-grid.card-design-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.club-card-1-new {
    background: #0a0a0a;
    border: 2px solid #ff1493;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
    width: 100%;
    min-width: 0;
}

.club-card-1-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
}

/* Header */
.club-header-1-new {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: #1a1a1a;
    border-bottom: 1px solid #ff1493;
}

.club-topic-1-new {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #ff69b4;
}

.club-level-badge-1-new {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 20, 147, 0.9), 0 0 35px rgba(255, 20, 147, 0.6);
    }
}

/* Image */
.club-image-1-new {
    width: 100%;
    height: 200px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
}

/* Details */
.club-details-1-new {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
}

.club-detail-item-1-new {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.club-detail-item-1-new i {
    color: #ff1493;
}

/* Footer / Join Button */
.club-footer-1-new {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid #ff1493;
}

.join-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

/* STATUS COLORS */
.status-open {
    background: #10b981 !important;
    color: white;
}

.status-open:hover {
    background: #059669 !important;
}

.status-soon {
    background: #f59e0b !important;
    color: white;
}

.status-soon:hover {
    background: #d97706 !important;
}

.status-full,
.status-closed {
    background: #ef4444 !important;
    color: white;
}

.status-full:hover,
.status-closed:hover {
    background: #b91c1c !important;
}

/* Live tracker */
.live-tracker {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff69b4;
}



/* ============================================
   MOBILE RESPONSIVE - CLUB CARDS
   Use course-style horizontal layout on mobile
   ============================================ */

@media (max-width: 1024px) {
    .clubs-grid.card-design-1 {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* Switch to course-style horizontal cards on mobile */
    .clubs-grid.card-design-1 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .club-card-1-new {
        flex-direction: row;
        border-radius: 20px;
        overflow: hidden;
    }
    
    .club-image-1-new {
        width: 150px;
        height: auto;
        min-height: 200px;
        flex-shrink: 0;
    }
    
    .club-content-1-new {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    
    .club-meta-1-new {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .club-footer-1-new {
        margin-top: auto;
        padding: 0;
        border-top: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .club-level-1-new {
        margin: 0;
    }
    
    .join-btn-1-new {
        width: auto;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .club-card-1-new {
        flex-direction: column;
    }
    
    .club-image-1-new {
        width: 100%;
        height: 180px;
        min-height: 180px;
    }
    
    .club-footer-1-new {
        flex-direction: column;
        gap: 10px;
    }
    
    .join-btn-1-new {
        width: 100%;
    }
}
.hero-overlay {
    background: none !important;
}
.hero-overlay {
    background: none !important;
}
.logo-badge {
    box-shadow: none !important;
}
img.logo-badge {
    box-shadow: none !important;
    filter: none !important;
    outline: none !important;
}

.logo-badge {
    border: none !important;
}
