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

:root {
    --primary-color: #00FF87;
    --secondary-color: #FF3366;
    --accent-color: #FFD700;
    --dark-bg: #0A0E27;
    --darker-bg: #05070F;
    --card-bg: #131834;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    --text-light: #ffffff;
    --text-gray: #8B8FA3;
    --success: #00FF87;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white !important;
}

.btn-nav:hover {
    background: #ff8259;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: var(--darker-bg);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.hero-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.hero-tag {
    display: inline-block;
    background: rgba(0, 255, 135, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 135, 0.3);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.info-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.info-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 2rem;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-value {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--darker-bg);
    box-shadow: 0 8px 25px rgba(0, 255, 135, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 255, 135, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Prizes Showcase */
.hero-right {
    position: relative;
}

.prizes-showcase {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.prizes-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.showcase-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.prize-showcase {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    background: var(--darker-bg);
}

.prize-showcase:hover {
    transform: translateX(5px);
}

.gold-prize {
    border-color: var(--gold);
}

.gold-prize:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.silver-prize {
    border-color: var(--silver);
}

.bronze-prize {
    border-color: var(--bronze);
}

.prize-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.badge-icon {
    font-size: 3rem;
}

.badge-rank {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--darker-bg);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
}

.prize-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.prize-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prize-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
}

.gold-prize .prize-value {
    color: var(--gold);
}

.silver-prize .prize-value {
    color: var(--silver);
}

.bronze-prize .prize-value {
    color: var(--bronze);
}

.total-prize {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--text-gray);
}

.total-prize strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 900;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Bracket Section */
.bracket-section {
    background: var(--darker-bg);
    padding: 5rem 0;
    overflow-x: auto;
}

.bracket-container {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    min-width: max-content;
    justify-content: center;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.round-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.matches {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-around;
    height: 100%;
}

.match {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 0;
    min-width: 250px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.match:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.2);
}

.match-team {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    transition: all 0.3s;
    position: relative;
}

.match-team:first-child {
    border-bottom: 1px solid var(--border-color);
}

.match-team:hover {
    background: rgba(0, 255, 135, 0.05);
}

.match-team.team1 {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.match-team.team2 {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.match-team.winner {
    background: rgba(0, 255, 135, 0.1);
    font-weight: 700;
}

.team-seed {
    background: var(--primary-color);
    color: var(--darker-bg);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.team-name {
    flex: 1;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-score {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-color);
    min-width: 30px;
    text-align: center;
}

.final-match {
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.match-trophy {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* Bracket connector lines */
.bracket-round:not(:last-child) .match::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--border-color);
    right: -40px;
    top: 50%;
}

/* Prizes Section */
.prizes-section {
    background: var(--dark-bg);
    position: relative;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.prize-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.prize-card.gold {
    border-color: var(--gold);
}

.prize-card.gold::before {
    background: var(--gold);
}

.prize-card.silver {
    border-color: var(--silver);
}

.prize-card.silver::before {
    background: var(--silver);
}

.prize-card.bronze {
    border-color: var(--bronze);
}

.prize-card.bronze::before {
    background: var(--bronze);
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.prize-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.prize-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.prize-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.prize-card.gold .prize-amount {
    color: var(--gold);
}

.prize-card.silver .prize-amount {
    color: var(--silver);
}

.prize-card.bronze .prize-amount {
    color: var(--bronze);
}

.prize-features {
    list-style: none;
    text-align: left;
}

.prize-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prize-features li:last-child {
    border-bottom: none;
}

/* Teams Section */
.teams-section {
    background: var(--darker-bg);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-slot {
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.team-slot.empty {
    border-style: dashed;
    opacity: 0.5;
}

.team-slot:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.15);
}

.team-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.team-slot.filled {
    background: var(--card-bg);
    border-color: var(--primary-color);
    border-style: solid;
}

.team-slot h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-slot p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Info Section */
.info-section {
    background: var(--dark-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 135, 0.15);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 135, 0.3));
}

.info-content {
    width: 100%;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.info-card p {
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.info-detail {
    color: var(--text-gray) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    margin-top: 0.5rem;
}

/* Rules Section */
.rules-section {
    margin-top: 4rem;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
}

.rules-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--darker-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.rule-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.rule-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    min-width: 50px;
}

.rule-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Registration Section */
.register-section {
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    padding: 5rem 0;
}

.register-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
}

.register-box h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-light), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.form-group input {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: var(--darker-bg);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 135, 0.1);
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.btn-large {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: -1rem;
}

/* Payment Info */
.payment-info {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.payment-success {
    text-align: center;
    margin-bottom: 2.5rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #00ff9d);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.3);
}

.payment-success h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-weight: 800;
}

.payment-success p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

.iban-box {
    background: var(--darker-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.iban-box h4 {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    text-align: center;
}

.payment-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.payment-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.payment-item.highlight {
    background: rgba(0, 255, 135, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 135, 0.2);
}

.payment-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.payment-value {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.iban-value {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.iban-value span {
    flex: 1;
    min-width: 250px;
    background: var(--card-bg);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    border: 2px solid var(--border-color);
    word-break: break-all;
}

.copy-btn {
    background: var(--primary-color);
    color: var(--darker-bg);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 135, 0.4);
}

.payment-note {
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.08), rgba(0, 255, 135, 0.03));
    border: 2px solid rgba(0, 255, 135, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.payment-note p {
    margin: 0.8rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-note strong {
    color: var(--primary-color);
    font-weight: 800;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 2.5rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin: 0;
}

.footer-logo p {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.social-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .bracket-container {
        justify-content: flex-start;
        overflow-x: scroll;
        padding-bottom: 2rem;
    }
    
    .bracket-section {
        overflow-x: scroll;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .bracket-container {
        gap: 2rem;
        padding: 1rem;
    }
    
    .match {
        min-width: 220px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .iban-value {
        flex-direction: column;
    }
    
    .iban-value {
        flex-direction: column;
    }
    
    .iban-value span {
        font-size: 0.85rem;
        min-width: 100%;
        letter-spacing: 1px;
    }
    
    .copy-btn {
        width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-item {
        padding: 1.5rem;
        background: var(--card-bg);
        border-radius: 12px;
        margin-bottom: 1rem;
    }
}

/* ====================== */
/* NEW PROFESSIONAL STYLES */
/* ====================== */

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 135, 0.1);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 135, 0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero Title Lines */
.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--primary-color);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Prize Cards - New Design */
.prize-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s;
}

.prize-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.main-prize {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.1) 0%, var(--card-bg) 100%);
    border-color: rgba(0, 255, 135, 0.3);
}

.main-prize .prize-rank {
    background: var(--primary-color);
    color: var(--darker-bg);
}

.main-prize .prize-amount {
    font-size: 2rem;
    color: var(--primary-color);
}

.prize-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.secondary-prize {
    padding: 1.2rem;
}

.prize-rank {
    width: 40px;
    height: 40px;
    background: var(--text-gray);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.prize-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.prize-title {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prize-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-light);
}

/* Event Info Card */
.event-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 1.5rem;
    border-right: 1px solid var(--border-color);
}

.date-day {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-location {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.location-title {
    font-weight: 700;
    color: var(--text-light);
}

.location-sub {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.event-fee {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-color);
}

.fee-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.fee-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Section Tag */
.section-tag {
    display: inline-block;
    background: rgba(0, 255, 135, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Info Main Grid */
.info-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-large-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.large-card-header {
    background: rgba(0, 255, 135, 0.05);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.large-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
}

.large-card-content {
    padding: 2rem;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.detail-value.highlight {
    color: var(--primary-color);
}

/* Prize Breakdown */
.info-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prize-breakdown {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.prize-breakdown h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prize-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prize-item {
    display: grid;
    grid-template-columns: 30px 1fr 60px;
    align-items: center;
    gap: 1rem;
}

.prize-position {
    font-weight: 800;
    color: var(--text-gray);
}

.prize-bar {
    height: 8px;
    background: var(--primary-color);
    border-radius: 4px;
}

.prize-money {
    font-weight: 700;
    color: var(--text-light);
    text-align: right;
}

.prize-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
}

.prize-total span:last-child {
    color: var(--primary-color);
}

/* Rules Section Updated */
.rules-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.rule-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.rule-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.rule-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.rule-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.rule-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Register Section Updated */
.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.register-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.register-info > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.register-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 255, 135, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature-item span {
    color: var(--text-light);
    font-weight: 500;
}

.register-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
}

.btn-full {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
}

/* Checkbox Updated */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* Payment Info Updated */
.payment-success {
    text-align: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.success-check {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 135, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.payment-success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.payment-success p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.iban-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.iban-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.payment-detail {
    margin-bottom: 1rem;
}

.payment-detail:last-child {
    margin-bottom: 0;
}

.payment-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.payment-value {
    font-weight: 600;
    color: var(--text-light);
}

.payment-value.accent {
    color: var(--primary-color);
}

.iban-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--darker-bg);
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

.iban-row span {
    flex: 1;
    font-family: 'SF Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.copy-btn {
    background: var(--primary-color);
    color: var(--darker-bg);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.copy-btn:hover {
    opacity: 0.9;
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.highlight-box {
    background: rgba(0, 255, 135, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 135, 0.2);
}

.payment-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    padding-top: 1rem;
}

/* Footer Updated */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
}

.footer-main {
    max-width: 400px;
}

.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer-brand span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.footer-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* Teams Placeholder - Waiting for Draw */
.teams-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
}

.teams-placeholder svg {
    color: var(--text-gray);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.teams-placeholder h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.teams-placeholder p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.teams-placeholder .teams-count {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 1rem;
}

/* Registration Closed */
.registration-closed {
    text-align: center;
    padding: 3rem 1.5rem;
}

.registration-closed svg {
    color: var(--text-gray);
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.registration-closed h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.registration-closed p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Prize Card Spacing Fix - Hero Section */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prize-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.main-prize {
    padding: 1.8rem 1.5rem;
}

.secondary-prize {
    padding: 1.2rem 1rem;
}

.secondary-prize .prize-rank {
    font-size: 1.5rem;
}

.secondary-prize .prize-amount {
    font-size: 1.3rem;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .info-main-grid {
        grid-template-columns: 1fr;
    }
    
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .register-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .hero-stat {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .prize-row {
        grid-template-columns: 1fr;
    }
    
    .event-info-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .event-date,
    .event-fee {
        border: none;
        padding: 0;
        justify-content: center;
    }
    
    .event-location {
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
    
    .detail-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        display: none;
    }
    
    /* Mobile Hero */
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Prize Cards */
    .main-prize {
        padding: 1.5rem;
    }
    
    .main-prize .prize-rank {
        font-size: 2rem;
    }
    
    .main-prize .prize-amount {
        font-size: 1.5rem;
    }
    
    .secondary-prize {
        padding: 1rem;
    }
    
    /* Mobile Bracket */
    .bracket-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .bracket-round {
        min-width: 220px;
    }
    
    .match {
        min-width: 200px;
    }
    
    .match-team {
        padding: 0.8rem 1rem;
    }
    
    /* Mobile Teams */
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .team-slot {
        padding: 1rem;
    }
    
    .team-slot h3 {
        font-size: 0.9rem;
    }
    
    .team-slot p {
        font-size: 0.8rem;
    }
    
    /* Mobile Info */
    .large-card-content {
        padding: 1rem;
    }
    
    .detail-value {
        font-size: 0.95rem;
    }
    
    /* Mobile Registration */
    .register-wrapper {
        padding: 0;
    }
    
    .register-features {
        padding: 1.5rem;
    }
    
    .register-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .iban-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .iban-row span {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        word-break: break-all;
    }
    
    .copy-btn {
        width: 100%;
    }
    
    /* Mobile Section Titles */
    .section-tag {
        font-size: 0.6rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
    }
    
    .prize-card {
        padding: 1rem;
    }
    
    .teams-placeholder {
        padding: 2rem 1rem;
    }
    
    .teams-placeholder h3 {
        font-size: 1.1rem;
    }
}

/* ====================== */
/* PRIZE PODIUM STYLES */
/* ====================== */

.prizes-showcase {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.showcase-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.showcase-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.prize-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.8rem;
    height: 180px;
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.podium-medal {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.podium-item.first .podium-medal {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
}

.podium-item.second .podium-medal {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #1a1a2e;
}

.podium-item.third .podium-medal {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    color: #1a1a2e;
}

.podium-amount {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.podium-item.first .podium-amount {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.podium-bar {
    width: 100%;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s;
}

.podium-item.first .podium-bar {
    height: 100px;
    background: linear-gradient(180deg, var(--primary-color), rgba(0, 255, 135, 0.3));
}

.podium-item.second .podium-bar {
    height: 70px;
    background: linear-gradient(180deg, #C0C0C0, rgba(192, 192, 192, 0.3));
}

.podium-item.third .podium-bar {
    height: 50px;
    background: linear-gradient(180deg, #CD7F32, rgba(205, 127, 50, 0.3));
}

/* Payment Badge for Teams */
.payment-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.payment-badge.paid {
    background: rgba(0, 255, 135, 0.15);
    color: var(--primary-color);
}

.payment-badge.pending {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa502;
}

.team-slot.pending {
    border-color: rgba(255, 165, 0, 0.3);
}

.team-slot.paid {
    border-color: var(--primary-color);
}

/* Highlight Rule */
.rule-item.highlight-rule {
    background: rgba(0, 255, 135, 0.05);
    border-color: var(--primary-color);
}

.rule-item.highlight-rule .rule-number {
    background: var(--primary-color);
    color: var(--darker-bg);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

/* Responsive for podium */
@media (max-width: 768px) {
    .prize-podium {
        height: 150px;
    }
    
    .podium-item {
        width: 80px;
    }
    
    .podium-medal {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .podium-item.first .podium-medal {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .podium-amount {
        font-size: 0.85rem;
    }
    
    .podium-item.first .podium-amount {
        font-size: 1.1rem;
    }
    
    .podium-item.first .podium-bar {
        height: 80px;
    }
    
    .podium-item.second .podium-bar {
        height: 55px;
    }
    
    .podium-item.third .podium-bar {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .prize-podium {
        height: 130px;
        gap: 0.5rem;
    }
    
    .podium-item {
        width: 70px;
    }
    
    .showcase-total {
        font-size: 1.2rem;
    }
}

/* ====================== */
/* OFFICIAL RULES STYLES */
/* ====================== */

.official-rules {
    margin-top: 4rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
}

.official-rules > h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 1px;
}

.rules-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rule-section {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.rule-section:hover {
    border-color: rgba(0, 255, 135, 0.3);
}

.rule-section.highlight {
    border-color: var(--primary-color);
    background: rgba(0, 255, 135, 0.03);
}

.rule-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-color);
}

.rule-num {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.rule-section.highlight .rule-num {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.4);
}

.rule-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.rule-body {
    padding: 1.5rem;
}

.rule-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-body li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.rule-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.rule-body li:last-child {
    margin-bottom: 0;
}

.rule-body li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.rule-body p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rule-subtitle {
    color: var(--text-light) !important;
    font-weight: 700;
    font-size: 0.85rem !important;
    margin-top: 1rem;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rule-warning {
    background: rgba(255, 71, 87, 0.1);
    border-left: 3px solid #ff4757;
    padding: 0.8rem 1rem;
    margin-top: 1rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem !important;
}

.prize-mini {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 135, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 135, 0.2);
}

.prize-mini span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.prize-mini strong {
    color: var(--primary-color);
}

/* Event Info Card - Mobile Fix */
.event-info-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.event-date {
    text-align: center;
    padding-right: 1.5rem;
    border-right: 1px solid var(--border-color);
}

.date-day {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.event-location {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.location-title {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1rem;
}

.location-sub {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.event-fee {
    text-align: right;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-color);
}

.fee-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.fee-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Responsive for Rules */
@media (max-width: 768px) {
    .official-rules {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .official-rules > h3 {
        font-size: 1.2rem;
    }
    
    .rule-header {
        padding: 1rem;
    }
    
    .rule-header h4 {
        font-size: 0.9rem;
    }
    
    .rule-body {
        padding: 1rem;
    }
    
    .prize-mini {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Mobile Event Card - Stack vertically */
    .event-info-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .event-date {
        padding-right: 0;
        padding-bottom: 1rem;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .event-location {
        padding: 0.5rem 0;
    }
    
    .event-fee {
        padding-left: 0;
        padding-top: 1rem;
        border-left: none;
        border-top: 1px solid var(--border-color);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .rule-num {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .rule-body li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }
}