/* ============================================
   BBK Club Management System - Tech Innovation Theme
   Bold and modern with high-contrast colors for cutting-edge appeal
   ============================================ */

/* ============================================
   1. BASIC RESET AND LAYOUT
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'DejaVu Sans', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    line-height: 1.6;
    color: #1e1e1e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ============================================
   2. NAVIGATION
   ============================================ */
.nav {
    background: linear-gradient(135deg, #1e1e1e 0%, #0066ff 100%);
    padding: 15px 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    display: block;
}

.nav ul li a:hover {
    background-color: #0066ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 255, 0.4);
}

/* Cross-role navigation links (navigate to different role sections) */
.nav ul li a.cross-role {
    color: #4DD0E1 !important;
}

.nav ul li a.cross-role:hover {
    color: #26C6DA !important;
    background: rgba(77, 208, 225, 0.1);
}

/* Club switcher for site admins */
.nav ul li.club-switcher {
    padding: 8px 12px;
}

.nav ul li.club-switcher label {
    display: block;
    font-size: 11px;
    margin-bottom: 4px;
    opacity: 0.8;
    text-align: center;
    color: #ffffff;
}

.nav ul li.club-switcher select {
    width: 100%;
    padding: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.nav ul li.club-switcher select option {
    background: #333;
    color: white;
}

.nav-logo {
    margin-left: auto;
    height: 40px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

/* ============================================
   3. FORMS
   ============================================ */

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8eaed;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
    border-top: 4px solid #0066ff;
}

.login-container h2 {
    text-align: center;
    color: #1e1e1e;
    margin-bottom: 30px;
    font-weight: 600;
}

.login-club-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 15px;
}

.login-club-logo {
    height: 60px;
    width: auto;
    padding: 10px;
    background: linear-gradient(135deg, #1e1e1e 0%, #0066ff 100%);
    border-radius: 8px;
}

.login-club-name {
    text-align: left;
}

.login-club-name h2 {
    margin: 0;
    color: #0066ff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.login-club-name p {
    margin: 5px 0 0 0;
    color: #1e1e1e;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #1e1e1e;
    font-weight: 600;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Segoe UI', 'DejaVu Sans', sans-serif;
    transition: all 0.3s ease;
    color: #1e1e1e;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input[type="checkbox"] {
    margin-right: 5px;
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    background: linear-gradient(135deg, #0052cc 0%, #0041a8 100%);
}

.btn-full {
    width: 100%;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #bd2130 0%, #a71d2a 100%);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
    color: #1e1e1e;
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00cccc 0%, #00b3b3 100%);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

/* ============================================
   5. ALERTS & MESSAGES
   ============================================ */
.alert {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left-color: #0066ff;
}

/* ============================================
   6. TABLES
   ============================================ */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e8eaed;
    color: #1e1e1e;
}

table th {
    background: linear-gradient(135deg, #1e1e1e 0%, #0066ff 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

table tr:hover {
    background-color: #f0f7ff;
}

table tr:last-child td {
    border-bottom: none;
}

/* ============================================
   7. DASHBOARD - WELCOME HEADER
   ============================================ */
.dashboard-welcome {
    background: linear-gradient(135deg, #1e1e1e 0%, #0066ff 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.dashboard-welcome h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
}

.dashboard-welcome .member-info {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
}

/* ============================================
   8. RANKINGS SUMMARY
   ============================================ */
.rankings-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
}

.rankings-summary h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e1e1e;
}

.rankings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.rank-box {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.rank-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.rank-box .rank-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rank-box .rank-value {
    font-size: 36px;
    font-weight: bold;
    margin: 8px 0;
}

.rank-box .rank-total {
    font-size: 13px;
    opacity: 0.9;
}

/* Overall ranking gets cyan accent */
.rank-box.rank-overall {
    background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
    color: #1e1e1e;
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.4);
}

/* ============================================
   9. DISCIPLINE CARDS
   ============================================ */
.discipline-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid #0066ff;
}

.discipline-card:hover {
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
    transform: translateY(-2px);
}

.discipline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8eaed;
}

.discipline-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1e1e1e;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-ranked {
    background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
    color: #1e1e1e;
}

/* Discipline stats row */
.discipline-stats-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f5f7fa;
    border-radius: 8px;
}

.stat-item.stat-primary {
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
    border: 2px solid #0066ff;
}

.stat-label {
    font-size: 13px;
    color: #1e1e1e;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #1e1e1e;
    margin: 8px 0;
}

.stat-number.stat-large {
    font-size: 42px;
    color: #0066ff;
}

.stat-subtitle {
    font-size: 18px;
    color: #1e1e1e;
    margin-top: 8px;
    font-weight: 500;
}

/* Top scores bars */
.top-scores {
    margin: 30px 0;
}

.top-scores h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1e1e1e;
    font-weight: 600;
}

.score-bar {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score-gold {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.score-silver {
    background: linear-gradient(135deg, #4d94ff 0%, #3d7acc 100%);
    color: white;
}

.score-bronze {
    background: linear-gradient(135deg, #80b3ff 0%, #6699cc 100%);
    color: white;
}

.score-value {
    font-size: 24px;
    font-weight: bold;
}

.score-date {
    font-size: 14px;
}

/* Score graph */
.score-graph {
    margin: 30px 0;
    height: 250px;
}

.score-graph canvas {
    height: 100% !important;
}

/* View rankings button */
.view-rankings-btn {
    text-align: center;
    margin-top: 20px;
}

.view-rankings-btn .btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
    color: #1e1e1e;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.view-rankings-btn .btn:hover {
    background: linear-gradient(135deg, #00cccc 0%, #00b3b3 100%);
    transform: translateY(-2px);
}

/* ============================================
   10. EVENTS (UPCOMING & RECENT)
   ============================================ */
.upcoming-events {
    margin-top: 40px;
    margin-bottom: 40px;
}

.upcoming-events h2 {
    margin-bottom: 20px;
    color: #1e1e1e;
    font-size: 24px;
    font-weight: 600;
}

.recent-events {
    margin-top: 40px;
}

.recent-events h2 {
    margin-bottom: 20px;
    color: #1e1e1e;
    font-size: 24px;
    font-weight: 600;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.event-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid #0066ff;
}

.event-card:hover {
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
    transform: translateY(-2px);
}

.event-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #1e1e1e;
    font-weight: 600;
}

.event-date {
    color: #1e1e1e;
    font-size: 14px;
    margin-bottom: 15px;
}

.upcoming-event-card {
    border-left: 4px solid #00ffff;
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-upcoming {
    background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
    color: #1e1e1e;
}

.event-type {
    color: #1e1e1e;
    font-size: 14px;
    margin: 8px 0;
}

.event-location {
    color: #1e1e1e;
    font-size: 14px;
    margin: 8px 0;
}

.event-description {
    color: #1e1e1e;
    font-size: 14px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e8eaed;
    line-height: 1.5;
}

.event-scores {
    margin-top: 15px;
}

.event-score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e8eaed;
}

.event-score-item:last-child {
    border-bottom: none;
}

.placement-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.badge-gold {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
}

.badge-silver {
    background: linear-gradient(135deg, #4d94ff 0%, #3d7acc 100%);
    color: white;
}

.badge-bronze {
    background: linear-gradient(135deg, #80b3ff 0%, #6699cc 100%);
    color: white;
}

.badge-gray {
    background: #e8eaed;
    color: #1e1e1e;
}

/* ============================================
   11. RANKINGS DISCIPLINE PAGE
   ============================================ */
.stats-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
    text-align: center;
    border-top: 3px solid #0066ff;
}

.stat-box .stat-label {
    font-size: 14px;
    color: #1e1e1e;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-box .stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #1e1e1e;
}

.stat-box .stat-value.my-avg {
    color: #0066ff;
}

.club-graph {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
    margin: 30px 0;
}

.club-graph h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.club-graph canvas {
    height: 300px !important;
}

.leaderboard-table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
    overflow: hidden;
    margin: 30px 0;
}

.leaderboard-table h2 {
    padding: 20px;
    margin: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e6f2ff 100%);
    border-bottom: 2px solid #0066ff;
    color: #1e1e1e;
}

.leaderboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e8eaed;
}

.leaderboard-table th {
    background: #f5f7fa;
    font-weight: bold;
    color: #1e1e1e;
}

.leaderboard-table tr.highlight {
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
    font-weight: bold;
}

.leaderboard-table tr:hover:not(.highlight) {
    background: #f5f7fa;
}

.rank-col {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #0066ff;
}

.medal {
    font-size: 24px;
}

.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: #0066ff;
    text-decoration: none;
    font-weight: 600;
}

.back-btn:hover {
    text-decoration: underline;
}

/* ============================================
   12. ADMIN CONSOLE STYLES
   ============================================ */
.admin-header {
    background: linear-gradient(135deg, #1e1e1e 0%, #0066ff 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.admin-header h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
    text-align: center;
    border-top: 3px solid #0066ff;
}

.stat-card h3 {
    margin: 0 0 10px 0;
    color: #1e1e1e;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-card .stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #0066ff;
    margin: 10px 0;
}

.stat-card.pending .stat-number {
    color: #00ffff;
}

.quick-actions {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
    margin-bottom: 30px;
}

.quick-actions h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-btn {
    display: block;
    padding: 15px 20px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.action-btn:hover {
    background: linear-gradient(135deg, #0052cc 0%, #0041a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.recent-activity {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
}

.recent-activity h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1e1e1e;
}

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

.activity-item {
    padding: 15px;
    border-bottom: 1px solid #e8eaed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.activity-item:last-child {
    border-bottom: none;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.status-pending {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    color: #1e1e1e;
}

.status-active {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

/* ============================================
   13. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 10px;
    }
    
    .nav ul li {
        margin: 5px 8px;
    }
    
    .nav ul li a {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .nav-logo {
        display: none;
    }
    
    /* Other mobile styles */
    .rankings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .discipline-stats-row {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .stats-boxes {
        grid-template-columns: 1fr;
    }

    .discipline-title {
        font-size: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-number.stat-large {
        font-size: 36px;
    }

    .dashboard-welcome h1 {
        font-size: 28px;
    }
}

/* ============================================
   14. LANDING PAGE STYLES - LIGHT THEME
   ============================================ */

/* Landing page uses LIGHT theme like rest of site */
body.landing-page {
    background: #f5f7fa;
    color: #1e1e1e;
}

body.landing-page .container {
    background-color: transparent;
}

/* Hero Section with Banner */
.landing-hero {
    position: relative;
    height: 350px;
    /* Banner image set per landing page - not hardcoded here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.landing-hero-content {
    display: none;
}

.landing-hero h1 {
    display: none;
}

.landing-hero .tagline {
    display: none;
}

/* CTA Buttons Section (between nav and content) */
.landing-cta-buttons {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 2px solid #0066ff;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.1);
}

.landing-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.landing-hero-btn {
    padding: 15px 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.landing-hero-btn.primary {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.landing-hero-btn.primary:hover {
    background: linear-gradient(135deg, #0052cc 0%, #0041a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.landing-hero-btn.secondary {
    background: white;
    color: #0066ff;
    border: 2px solid #0066ff;
}

.landing-hero-btn.secondary:hover {
    background: #0066ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* Landing Navigation */
.landing-navbar {
    background: linear-gradient(135deg, #1e1e1e 0%, #0066ff 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.landing-navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-navbar-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.landing-navbar-links {
    display: flex;
    gap: 30px;
}

.landing-navbar-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
}

.landing-navbar-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Landing Sections */
.landing-section {
    margin-bottom: 60px;
}

.landing-section h2 {
    font-size: 36px;
    color: #0066ff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.landing-about-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-top: 3px solid #0066ff;
    line-height: 1.8;
    font-size: 18px;
    color: #1e1e1e;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
}

.landing-about-content p {
    margin-bottom: 20px;
}

.landing-about-content p:last-child {
    margin-bottom: 0;
}

.landing-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.landing-event-card {
    background: white;
    border: 2px solid #e8eaed;
    border-left: 4px solid #0066ff;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    color: #1e1e1e;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
}

.landing-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
    border-left-color: #00ffff;
}

.landing-event-card h3 {
    color: #0066ff;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.landing-event-card .event-date {
    color: #1e1e1e;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

.landing-event-card p {
    color: #1e1e1e;
    margin-bottom: 10px;
}

.landing-event-card .event-type {
    display: inline-block;
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
    color: #0066ff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 15px;
    font-weight: 600;
}

/* Landing CTA Section */
.landing-cta-section {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.landing-cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.landing-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: white;
}

/* Landing Social Links */
.landing-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.landing-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #0066ff;
    border-radius: 8px;
    color: #0066ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.landing-social-link:hover {
    background: #0066ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

/* Landing Footer */
.landing-footer {
    background: linear-gradient(135deg, #1e1e1e 0%, #0066ff 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 -4px 12px rgba(0, 102, 255, 0.2);
}

.landing-footer p {
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0;
}

.landing-footer a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
}

.landing-footer a:hover {
    text-decoration: underline;
}

/* Landing Page Responsive */
@media (max-width: 768px) {
    .landing-hero {
        height: 250px;
    }
    
    .landing-navbar-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .landing-navbar-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .landing-section h2 {
        font-size: 28px;
    }
    
    .landing-about-content {
        padding: 25px;
        font-size: 16px;
    }
    
    .landing-cta-section {
        padding: 40px 20px;
    }
    
    .landing-cta-buttons .landing-hero-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .landing-social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   15. CLUB APPLICATION PAGE STYLES
   ============================================ */

.application-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
    border-top: 4px solid #0066ff;
}

.application-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e8eaed;
}

.application-header h1 {
    color: #0066ff;
    margin-bottom: 5px;
    font-size: 36px;
    font-weight: 700;
}

.application-header h2 {
    color: #1e1e1e;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 600;
}

.application-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.application-footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px 20px;
    color: #666;
}

.application-footer p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #999;
}

.section-heading {
    color: #0066ff;
    margin: 30px 0 20px;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8eaed;
}

.section-heading:first-of-type {
    margin-top: 0;
}

.option-box {
    border: 2px solid #e8eaed;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.option-box:hover {
    border-color: #0066ff;
    background: linear-gradient(135deg, #f5f9ff 0%, #e6f2ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.option-box.selected {
    border-color: #0066ff;
    border-width: 3px;
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.option-label {
    cursor: pointer;
    display: block;
}

.option-box input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.option-box h3 {
    color: #0066ff;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.option-box p {
    color: #1e1e1e;
    margin-bottom: 15px;
    line-height: 1.6;
}

.option-list {
    margin: 15px 0;
    padding-left: 30px;
    color: #1e1e1e;
}

.option-list li {
    margin-bottom: 8px;
}

.domain-field {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: #f5f9ff;
    border-radius: 8px;
    border: 2px dashed #0066ff;
}

.domain-field.show {
    display: block;
}

.domain-field-label {
    margin-top: 0;
    margin-bottom: 10px;
    display: block;
    color: #0066ff;
    font-weight: 600;
    font-size: 16px;
}

.domain-field .form-control {
    font-size: 18px;
    padding: 15px 20px;
    border: 2px solid #0066ff;
    background: white;
    font-weight: 500;
}

.hosting-note {
    margin: 20px 0;
    padding: 15px;
    color: #666;
    font-size: 14px;
    background: #f5f7fa;
    border-left: 4px solid #0066ff;
    border-radius: 4px;
}

.alert-success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    color: #2e7d32;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

.alert-error {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
    color: #c62828;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196F3;
    color: #1565c0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
}

.text-center {
    text-align: center;
}

.btn-large {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 30px;
    font-weight: 600;
}

/* ============================================
   END OF TECH INNOVATION THEME
   ============================================ */