/* ===== FORUM PAGE CSS - CASINO THEME ===== */
        
        /* ===== CSS RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #0a0a0a 50%, #1a0000 75%, #000000 100%);
            background-attachment: fixed;
            color: #ffffff;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* ===== HEADER ===== */
        .header {
            background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #0a0a0a 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #d4af37;
            box-shadow: 0 2px 20px rgba(212, 175, 55, 0.15);
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            color: #d4af37;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 1rem;
        }
        
        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-links a:hover, .nav-links a.active {
            background: rgba(212, 175, 55, 0.15);
            color: #d4af37;
            text-decoration: none;
        }
        
        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .menu-toggle:hover {
            background: rgba(212, 175, 55, 0.15);
            color: #d4af37;
        }
        
        /* ===== SIDE DRAWER ===== */
        .side-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: linear-gradient(180deg, #1a0000 0%, #330000 50%, #0a0a0a 100%);
            transition: right 0.3s ease;
            z-index: 1001;
            border-left: 2px solid #d4af37;
            box-shadow: -5px 0 25px rgba(212, 175, 55, 0.2);
            overflow-y: auto;
        }
        
        .side-drawer.open {
            right: 0;
        }
        
        .drawer-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .drawer-title {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .drawer-close {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .drawer-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #d4af37;
        }
        
        .drawer-nav {
            padding: 1rem 0;
        }
        
        .drawer-nav a {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .drawer-nav a:hover {
            background: rgba(212, 175, 55, 0.1);
            color: #d4af37;
            border-left-color: #d4af37;
        }
        
        .drawer-nav a.active {
            background: rgba(212, 175, 55, 0.15);
            color: #d4af37;
            border-left-color: #d4af37;
        }
        
        /* ===== DRAWER OVERLAY ===== */
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .drawer-overlay.open {
            opacity: 1;
            visibility: visible;
        }
        
        /* ===== MAIN CONTENT ===== */
        .main {
            padding: 2rem 0;
        }
        
        /* ===== BREADCRUMB ===== */
        .breadcrumb {
            margin-bottom: 1.5rem;
            color: #bbb;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: #f9f295;
            text-decoration: none;
        }
        
        /* ===== PAGE HERO ===== */
        .page-hero {
            text-align: center;
            margin-bottom: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(26, 0, 0, 0.8) 0%, rgba(51, 0, 0, 0.8) 100%);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        
        .page-hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #d4af37 0%, #dc143c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero p {
            font-size: 1.1rem;
            color: #e0e0e0;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* ===== ALERTS ===== */
        .alert {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .alert-success {
            background: rgba(13, 95, 13, 0.2);
            border: 1px solid rgba(13, 95, 13, 0.3);
            color: #4ade80;
        }
        
        .alert-error {
            background: rgba(139, 0, 0, 0.2);
            border: 1px solid rgba(139, 0, 0, 0.3);
            color: #ff6b6b;
        }
        
        /* ===== CARDS ===== */
        .card {
            background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(51, 0, 0, 0.9) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        
        .card h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-align: center;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        /* ===== FORMS ===== */
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #d4af37;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
            background: rgba(0, 0, 0, 0.5);
        }
        
        select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 3rem;
        }
        
        select option {
            background: #1a0000;
            color: #ffffff;
        }
        
        textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .badge {
            display: inline-block;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }
        
        /* ===== BUTTONS ===== */
        .btn {
            background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
            color: #000000;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .btn:hover:not(:disabled) {
            background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
        }
        
        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* ===== JODI BUCKET ===== */
        .bucket {
            min-height: 60px;
            border: 2px dashed rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            padding: 1rem;
            margin-top: 0.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .chip {
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 0.3rem 0.8rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }
        
        .chip .x {
            cursor: pointer;
            font-weight: bold;
            color: #dc143c;
            margin-left: 0.3rem;
        }
        
        /* ===== POSTS ===== */
        .post {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.2);
            margin-bottom: 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }
        
        .post:hover {
            background: rgba(0, 0, 0, 0.3);
            border-color: rgba(212, 175, 55, 0.2);
            transform: translateY(-2px);
        }
        
        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d4af37, #dc143c);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
            overflow: hidden;
        }
        
        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .post > div:nth-child(2) {
            flex: 1;
        }
        
        .post > div:nth-child(2) > div:first-child {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
        }
        
        .post > div:nth-child(2) > div:first-child b {
            color: #ffffff;
            font-size: 1.1rem;
        }
        
        .nums {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0.5rem 0;
        }
        
        .num {
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 6px;
            padding: 0.3rem 0.6rem;
            font-weight: 700;
            font-size: 0.9rem;
        }
        
        .status-pending {
            background: rgba(212, 175, 55, 0.2);
            color: #d4af37;
        }
        
        .status-pass {
            background: rgba(13, 95, 13, 0.2);
            color: #4ade80;
        }
        
        .status-fail {
            background: rgba(139, 0, 0, 0.2);
            color: #ff6b6b;
        }
        
        /* ===== PAGINATION ===== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .link {
            color: #d4af37;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .link:hover {
            background: rgba(212, 175, 55, 0.1);
            text-decoration: none;
            color: #f9f295;
        }
        
        /* ===== FOOTER ===== */
        .footer {
            background: rgba(10, 10, 10, 0.9);
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #d4af37;
            text-decoration: none;
            background: rgba(212, 175, 55, 0.1);
        }
        
        .footer-text {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                display: none;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .card {
                padding: 1.5rem;
            }
            
            .post {
                flex-direction: column;
                gap: 1rem;
            }
            
            .avatar {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 0.5rem;
            }
            
            .page-hero {
                padding: 1.5rem;
            }
            
            .page-hero h1 {
                font-size: 1.8rem;
            }
            
            .card {
                padding: 1rem;
            }
            
            .form-row {
                gap: 1rem;
            }
            
            .post {
                padding: 1rem;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* ===== ANIMATIONS ===== */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .card {
            animation: fadeIn 0.5s ease-out;
        }
        
        /* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
        a:focus, button:focus, input:focus, select:focus, textarea:focus {
            outline: 2px solid #d4af37;
            outline-offset: 2px;
        }