:root {
    --gold-primary: #FFD700;
    --gold-secondary: #C5A200;
    --dark-bg: #0A0A0A;
    --container-bg: #1A1A1A;
    --text-primary: #FFFFFF;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --scroll-progress: 0;
    --z-index-modal: 1000;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
                url('steel-flower-logo.png') center/cover no-repeat fixed;
    color: var(--text-primary);
    font-family: Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FFD700"><circle cx="12" cy="12" r="8"/></svg>') 12 12, auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-top: 20px !important;
    padding-bottom: 20px;
    z-index: 1;
    flex: 1;
    padding-bottom: 80px;
}

.scroll-progress {
    height: 3px;
    background: var(--gold-primary);
    position: fixed;
    top: 0;
    left: 0;
    width: calc(var(--scroll-progress) * 1%);
    z-index: 9999;
    transition: width 0.1s linear;
}

.content-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.section-hidden {
    display: none; /* Ensures hidden sections don't occupy space */
}

.content-section.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    position: relative;
    display: block;
}


.social-button {
    background: linear-gradient(145deg, 
        rgba(20, 20, 20, 0.95) 0%, 
        rgba(40, 40, 40, 0.9) 100%);
    border: 2px solid var(--gold-primary);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.rules-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    margin-top: 0 !important;
    gap: 1rem;
}

.rules-sidebar {
    background: rgba(20, 20, 20, 0.95);
    border-right: 2px solid var(--gold-primary);
    padding: 1rem;
    position: sticky;
    top: 20px;              /* lowered from 100px */
    height: fit-content;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 50;
}

.rules-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    background: none;
    border: none;
    color: var(--text-primary);
    text-align: left;
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.nav-item.active {
    background: var(--gold-primary);
    color: var(--dark-bg);
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255,215,0,0.3);
}

.rules-content {
    background: rgba(10, 10, 10, 0.9);
    padding-top: 0 !important;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    /* min-height: 100vh; */        /* ⬅️ removed this */
}

.doc-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 3rem;
}

.doc-section {
    display: block !important; /* Force sections to remain in document flow */
}

.doc-section.active {
    opacity: 1;
    transform: translateY(0);
}

.rules-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.doc-section:not(:last-child) {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,215,0,0.1);
}

.rules-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 20, 20, 0.9);
    min-width: 800px;
}


.rules-table td, 
.rules-table th {
    padding: 1rem;
    border: 1px solid var(--gold-primary);
    text-align: left;
}

.version-info {
    border-top: 2px solid var(--gold-primary);
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    opacity: 0.8;
}

.social-button:hover .social-icon {
    transform: scale(1.1) rotate(-5deg);
}

@keyframes socialGlow {
    to { transform: translate(50%, 50%); }
}

.social-hover-effect {
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), 
                rgba(255, 215, 0, 0.1) 0%, 
                transparent 100%);
}

th[data-sort]::after {
    content: ' ↕';
    color: var(--gold-primary);
    font-size: 0.8em;
}

th[data-sort="asc"]::after {
    content: ' ↑';
}

th[data-sort="desc"]::after {
    content: ' ↓';
}

.status-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.filter-btn {
    background: rgba(255,215,0,0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--gold-primary);
    color: var(--dark-bg);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(circle at 50% 50%, 
        rgba(255, 215, 0, 0.05) 0%, 
        transparent 100%);
    animation: particleFlow 20s linear infinite;
    z-index: -1;
}

@keyframes particleFlow {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.3; }
}

@media (max-width: 768px) {
    /* General Mobile Adjustments */
    body {
        font-size: 16px; /* Base font size increase */
        line-height: 1.6;
    }

    .container {
        padding-bottom: 120px; /* More space on mobile */
    }

    h1 {
        font-size: 2rem !important;
        margin: 0.5rem 0;
        padding: 0 1rem;
    }

    /* Rules Container */
    .rules-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1rem !important;
    }

    /* Sidebar */
    .rules-sidebar {
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0.5rem;
        background: rgba(10,10,10,0.95);
        border-bottom: 2px solid var(--gold-primary);
        max-height: 60vh;
        overflow-y: auto;
    }

    .sidebar-header h2 {
        font-size: 1.2rem;
        margin: 0.5rem 0;
    }

    /* Navigation Buttons */
    .rules-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
    }

    .nav-item {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
        text-align: center;
        border-radius: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Main Content */
    .rules-content {
        padding: 1rem 0.5rem !important;
        margin-top: 1rem;
    }

    .doc-section {
        margin-bottom: 2rem;
        padding: 1rem;
        background: rgba(20,20,20,0.9);
        border-radius: 8px;
    }

    /* Tables */
    .rules-table-container {
        margin: 1rem -0.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .rules-table th,
    .rules-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
        min-width: 120px;
    }

    /* Status Filter */
    .status-filter {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .filter-btn {
        width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        flex: 1 1 45%;
    }

    /* Search Box */
    .search-box {
        margin: 1rem 0;
    }

    #searchInput {
        font-size: 14px;
        padding: 10px 15px;
    }

    /* Section Transitions */
    .content-section {
        transition: all 0.3s ease;
        padding: 0 0.5rem;
    }

    /* Touch-Friendly Scroll */
    .rules-sidebar::-webkit-scrollbar,
    .rules-table-container::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    /* Table Swipe Hint */
    .rules-table-container::after {
        content: "← swipe to scroll →";
        display: block;
        text-align: center;
        color: var(--gold-primary);
        padding: 0.5rem;
        font-size: 0.8rem;
        opacity: 0.7;
    }

    .site-footer {
        position: relative; /* Ensure mobile footer stays in flow */
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .nav-item {
        font-size: 0.8rem;
        padding: 0.6rem 0.3rem;
    }

    .rules-table th,
    .rules-table td {
        font-size: 0.8rem;
        padding: 0.6rem 0.4rem;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .doc-section h2 {
        font-size: 1.3rem;
        margin: 0.8rem 0;
    }

    .rules-nav {
        grid-template-columns: 1fr;
    }
}

@keyframes sectionAppear {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Existing styles below - keep all previous styles and add these new ones at the top */
h1 {
    text-align: center;
    color: var(--gold-primary);
    font-size: 2.5rem;
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.description {
    background: rgba(20, 20, 20, 0.9);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
    border-left: 4px solid var(--gold-primary);
}

.description p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(20, 20, 20, 0.9);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gold-primary);
    word-break: break-word;
    max-width: 200px;
}

th {
    text-transform: uppercase;
    letter-spacing: 1px;
}

tr {
    transition: transform 0.2s ease;
    cursor: pointer;
}

tr:hover {
    transform: translateX(10px);
    background: rgba(255, 215, 0, 0.03);
}

.search-box input {
    width: 100%;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid var(--gold-primary);
    color: var(--text-primary);
    border-radius: 4px;
}

.search-box {
    max-width: 600px;
    margin: 20px auto;
    position: relative;
}

#searchInput {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 25px;
}

.no-results td {
    text-align: center;
    padding: 20px;
    color: #FFD700;
    font-style: italic;
}

.search-box::after {
    content: "🔍";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: var(--z-index-modal);
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
    transform: translateY(-50px);
    opacity: 0;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 45%,
        rgba(255, 215, 0, 0.05) 50%,
        transparent 55%);
    animation: modalGlow 6s linear infinite;
    z-index: -1;
}

.close {
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    transform: rotate(90deg);
    background: rgba(255, 215, 0, 0.1);
    text-shadow: 0 0 15px var(--gold-primary);
}

.profile-header h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.profile-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 2px;
}

.detail-item {
    background: rgba(10, 10, 10, 0.6);
    border-radius: 8px;
    margin: 1rem 0;
    padding: 1.2rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.05),
        transparent);
    transition: left 0.6s ease;
}

.detail-item:hover::before {
    left: 100%;
}

.detail-item:hover {
    transform: translateX(10px);
}

.detail-label {
    color: var(--gold-primary);
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    display: block;
}

@keyframes modalSlideIn {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes modalFadeIn {
    0% { backdrop-filter: blur(0); background: rgba(0,0,0,0); }
    100% { backdrop-filter: blur(5px); background: rgba(0,0,0,0.7); }
}

@keyframes modalGlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100%, 100%) rotate(360deg); }
}

.status-active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.status-inactive {
    color: #FF0000;
    padding: 4px 8px;
    border-radius: 3px;
    background: rgba(255,0,0,0.1);
}

.main-nav {
    position: relative;
    padding: 1.5rem 0;
    margin-bottom: 1rem !important;
    background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
}

.nav-inner {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.nav-button {
    background: none;
    border: none;
    color: var(--gold-primary);
    padding: 1rem 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 50px;
}

.nav-button span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.nav-button .nav-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
}

.nav-button:hover .nav-line {
    width: 80%;
}

.nav-button:hover {
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.nav-button:hover::before {
    width: 100%;
    height: 100%;
}

.nav-button.active {
    background: rgba(255,215,0,0.1);
}

.nav-button.active .nav-line {
    width: 100%;
    background: #FFD700;
    box-shadow: 0 0 15px #FFD700;
}

.nav-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,215,0,0.05) 50%, 
        transparent 100%);
    animation: navGlow 6s infinite;
}

@keyframes navGlow {
    0% { opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { opacity: 0.3; }
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.social-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.social-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgba(255, 215, 0, 0.1) 50%, 
        transparent 75%);
    animation: socialGlow 4s infinite linear;
    z-index: 1;
}

@keyframes sectionAppear {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
        margin: 1rem;
        padding-bottom: 100px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .nav-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-button {
        width: 100%;
        margin: 0;
        padding: 1rem;
    }

    table {
        font-size: 0.8rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    th, td {
        padding: 0.8rem;
        min-width: 120px;
        white-space: normal;
        max-width: 150px;
    }

    .social-container {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 90%;
        margin: 10% auto;
        padding: 1rem;
    }

    .detail-item {
        padding: 0.8rem;
        margin: 0.5rem 0;
    }

    #searchInput {
        padding: 10px 15px;
        font-size: 14px;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .description p {
        font-size: 0.9rem;
    }

    .social-button h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 2;
    }

    .social-button p {
        font-size: 0.95rem;
        opacity: 0.9;
        position: relative;
        z-index: 2;
    }

    .modal-content {
        width: 95%;
    }
}

@keyframes popIn {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.animate-pop { animation: popIn 0.3s ease-out; }
.animate-slide { animation: slideUp 0.4s ease-out; }

.loading-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gold-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.stats-bar {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    order: 2; /* Ensures proper order in flex layout */
}

.stats-bar span {
    font-weight: bold;
    color: var(--gold-primary);
}

.search-tools {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
}

.search-clear {
    background: none;
    border: none;
    color: var(--gold-primary);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 0.5rem;
}

.social-hover-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.social-button:hover .social-hover-effect {
    opacity: 1;
}

.site-footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid var(--gold-primary);
    padding: 1.5rem 0;
    margin-top: auto;
    z-index: 100;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}
.social-icon:hover {
    color: #ffffff;
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.social-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.social-icon:hover::after {
    width: 100%;
}

.copyright {
    color: rgba(255, 215, 0, 0.7);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
#tournaments-section .description {
    max-width: 800px;
    margin: 1rem auto 2rem;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.tournament-card {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid var(--gold-primary);
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255,215,0,0.2);
}

.tournament-header {
    border-bottom: 1px solid var(--gold-primary);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.tournament-title {
    color: var(--gold-primary);
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.tournament-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-upcoming {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.status-completed {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.tournament-detail {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.detail-label {
    color: var(--gold-primary);
    opacity: 0.8;
}

.detail-value {
    text-align: right;
}

.progress-bar {
    height: 5px;
    background: rgba(255,215,0,0.2);
    border-radius: 3px;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: var(--gold-primary);
    transition: width 0.5s ease;
}

.tournament-detail-page {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 10px;
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 1.1rem;
}

.tournament-meta {
    margin: 0.5rem 0;
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}