/* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #204220;
            --secondary-color: #23b6c4;
            --accent-color: #50af4d;
            --accent-gold: #fece3c;
            --text-light: #ffffff;
            --text-dark: #333333;
            --bg-dark: #252527;
            --bg-card: rgba(29, 29, 38, 0.9);
            --bg-light: #c0c4e7;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --shadow-glow: 0 0 20px rgba(80, 175, 77, 0.3);
            --transition: all 0.3s ease;
            --border-radius: 14px;
        }

        html {
            font-size: 17px;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'JUST Sans', sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(80, 175, 77, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(35, 182, 196, 0.05) 0%, transparent 20%);
        }

        /* Typography */
        h1, h2, h3, h4, h5 {
            font-family: 'Russo One', sans-serif;
            text-align: center;
            margin: 1.5rem 0;
            color: #9dc2cd;
        }

        h1 {
            font-size: 2.5rem;
            background: linear-gradient(90deg, #9dc2cd, #50af4d, #fece3c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            animation: gradientShift 3s infinite alternate;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        h2 {
            font-size: 2rem;
            color: #9dc2cd;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            animation: lineGlow 2s infinite alternate;
        }

        @keyframes lineGlow {
            0% { opacity: 0.5; width: 100px; }
            100% { opacity: 1; width: 150px; }
        }

        h3 {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin: 1.5rem 0 1rem;
            text-align: left;
            border-left: 4px solid var(--accent-color);
            padding-left: 1rem;
        }

        p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        a {
            color: #9dc2cd;
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        /* Layout */
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Universal Section Class */
        .section {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: var(--bg-card);
            border-radius: var(--border-radius);
            box-shadow: 0 0 20px rgba(65, 198, 73, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(80, 175, 77, 0.05) 0%, transparent 70%);
            z-index: 0;
            animation: rotate 20s linear infinite;
        }

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

        .section > * {
            position: relative;
            z-index: 1;
        }

        .section:hover {
            box-shadow: var(--shadow-glow);
            transform: translateY(-5px);
        }

        /* Header & Navigation */
        header {
            background: var(--bg-light) !important;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            animation: slideDown 0.5s ease-out;
            backdrop-filter: blur(10px);
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

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

        .logo {
            flex: 0 0 auto;
        }

        .logo h1 {
            margin: 0;
            font-size: 1.8rem;
        }

        .logo a {
            display: block;
            padding: 5px 0;
        }

        /* Animated Logo */
        .logo-animation {
            font-family: 'Russo One', sans-serif;
            font-weight: 200;
            text-transform: uppercase;
            animation: strokeAnimation 20s infinite alternate;
            stroke-width: 2;
            stroke: #cc2154;
            font-size: 2.2rem;
            display: inline-block;
        }

        @keyframes strokeAnimation {
            0% {
                fill: #0d8f08;
                stroke: #50af4d;
                stroke-dashoffset: 25%;
                stroke-dasharray: 0 50%;
                stroke-width: 2;
            }
            70% {
                fill: rgba(72,138,20,0);
                stroke: #50af4d;
            }
            100% {
                fill: #a8900d;
                stroke: rgba(54,95,160,0);
                stroke-dashoffset: -25%;
                stroke-dasharray: 50% 0;
                stroke-width: 0;
            }
        }

        /* Main Navigation */
        .main-nav {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-list li a {
            color: var(--text-dark);
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .nav-list li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .nav-list li a:hover::before {
            transform: translateX(0);
        }

        .nav-list li a:hover {
            color: var(--primary-color);
            text-decoration: none;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Auth Buttons */
        .auth-buttons {
            display: flex;
            gap: 1rem;
            margin-left: 2rem;
        }

        .btn-auth {
            padding: 0.6rem 1.5rem;
            font-weight: 700;
            font-size: 0.9rem;
            color: #9dc2cd;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 4px;
            background: linear-gradient(221deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            white-space: nowrap;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(80, 175, 77, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(80, 175, 77, 0); }
            100% { box-shadow: 0 0 0 0 rgba(80, 175, 77, 0); }
        }

        .btn-auth:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(80, 175, 77, 0.3);
            text-decoration: none;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: 1px solid var(--primary-color);
            background: #9dc2cd;
            padding: 8px;
            border-radius: 8px;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            background: var(--accent-color);
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        /* Main Content */
        main {
            padding: 2rem 0;
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Custom List Styles */
        .features-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .features-list li {
            padding: 1rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, rgba(80, 175, 77, 0.1), transparent);
            border-left: 4px solid var(--accent-color);
            position: relative;
            padding-left: 3rem;
            animation: slideInRight 0.5s ease-out forwards;
            opacity: 0;
            border-radius: 8px;
            transition: var(--transition);
        }

        .features-list li:hover {
            background: linear-gradient(90deg, rgba(80, 175, 77, 0.2), transparent);
            transform: translateX(5px);
        }

        .features-list li:nth-child(1) { animation-delay: 0.1s; }
        .features-list li:nth-child(2) { animation-delay: 0.2s; }
        .features-list li:nth-child(3) { animation-delay: 0.3s; }
        .features-list li:nth-child(4) { animation-delay: 0.4s; }
        .features-list li:nth-child(5) { animation-delay: 0.5s; }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-color);
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Numbered List */
        .numbered-list {
            list-style: none;
            counter-reset: step-counter;
            padding: 0;
            margin: 2rem 0;
        }

        .numbered-list li {
            counter-increment: step-counter;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            background: rgba(32, 66, 32, 0.2);
            border-radius: 8px;
            position: relative;
            padding-left: 5rem;
            border: 1px solid rgba(80, 175, 77, 0.3);
            transition: var(--transition);
        }

        .numbered-list li:hover {
            background: rgba(32, 66, 32, 0.4);
            border-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(80, 175, 77, 0.2);
        }

        .numbered-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            animation: countPulse 2s infinite;
            box-shadow: 0 0 10px rgba(35, 182, 196, 0.5);
        }

        @keyframes countPulse {
            0% { transform: translateY(-50%) scale(1); box-shadow: 0 0 10px rgba(35, 182, 196, 0.5); }
            50% { transform: translateY(-50%) scale(1.1); box-shadow: 0 0 20px rgba(35, 182, 196, 0.8); }
            100% { transform: translateY(-50%) scale(1); box-shadow: 0 0 10px rgba(35, 182, 196, 0.5); }
        }

        /* Beautiful Tables */
        .table-container {
            margin: 2rem 0;
            overflow-x: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 0 30px rgba(65, 198, 73, 0.1);
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .styled-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: rgba(20, 28, 20, 0.9);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .styled-table thead {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .styled-table th {
            padding: 1.2rem 1rem;
            text-align: center;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            border-bottom: 3px solid var(--accent-gold);
            position: relative;
            overflow: hidden;
        }

        .styled-table th::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
            animation: tableLineGlow 2s infinite;
        }

        @keyframes tableLineGlow {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }

        .styled-table tbody tr {
            transition: var(--transition);
        }

        .styled-table tbody tr:nth-child(even) {
            background: rgba(80, 175, 77, 0.05);
        }

        .styled-table tbody tr:nth-child(odd) {
            background: rgba(29, 29, 38, 0.7);
        }

        .styled-table tbody tr:hover {
            background: rgba(80, 175, 77, 0.15);
            transform: scale(1.01);
            box-shadow: 0 5px 15px rgba(80, 175, 77, 0.2);
        }

        .styled-table td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .styled-table td:first-child {
            font-weight: bold;
            color: var(--accent-gold);
        }

        .styled-table td.highlight {
            background: linear-gradient(90deg, rgba(80, 175, 77, 0.2), rgba(35, 182, 196, 0.2));
            color: var(--accent-color);
            font-weight: bold;
        }

        .styled-table td.success {
            color: #4CAF50;
            font-weight: bold;
        }

        .styled-table td.warning {
            color: #FF9800;
            font-weight: bold;
        }

        .styled-table td i {
            margin-right: 8px;
            font-size: 1.1rem;
        }

        /* Special Casino Tables */
        .casino-table {
            background: linear-gradient(135deg, rgba(20, 28, 20, 0.95), rgba(29, 29, 38, 0.95));
            border: 2px solid;
            border-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color)) 1;
        }

        .casino-table th {
            background: linear-gradient(90deg, #0f7315, #23b6c4);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .casino-table tr {
            position: relative;
        }

        .casino-table tr::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .casino-table tr:hover::before {
            opacity: 1;
        }

        /* Payment Methods Table */
        .payment-table td {
            padding-left: 70px;
            background-repeat: no-repeat;
            background-position: 15px center;
            background-size: 40px;
            text-align: left;
        }

        .payment-table td.visa {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231A5F96"><path d="M17.5 8h-10c-1.4 0-2.5 1.1-2.5 2.5v3c0 1.4 1.1 2.5 2.5 2.5h10c1.4 0 2.5-1.1 2.5-2.5v-3c0-1.4-1.1-2.5-2.5-2.5z"/></svg>');
        }

        .payment-table td.mastercard {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF5F00"><circle cx="9" cy="12" r="7"/><circle cx="15" cy="12" r="7"/></svg>');
        }

        .payment-table td.payid {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300A8FF"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
        }

        .payment-table td.crypto {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F7931A"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z"/></svg>');
        }

        /* Buttons */
        .btn-primary {
            display: inline-block;
            padding: 12px 40px;
            background: linear-gradient(180deg, #75F45B 0%, #50af4d 100%);
            color: white;
            text-decoration: none;
            border-radius: 11px;
            text-align: center;
            font-weight: bold;
            text-transform: uppercase;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            animation: shimmer 2s infinite;
            border: none;
            cursor: pointer;
            font-family: 'JUST Sans', sans-serif;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(80, 175, 77, 0.3);
        }

        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(80, 175, 77, 0.4);
            text-decoration: none;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .btn-primary:hover::after {
            left: 100%;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 20, 20, 0.98);
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu.active {
            display: block;
            opacity: 1;
        }

        .mobile-menu-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 80%;
            max-width: 400px;
            height: 100%;
            background: linear-gradient(135deg, #1d1d26, #142417);
            transform: translateX(-100%);
            transition: transform 0.4s ease-in-out;
            padding: 2rem;
            overflow-y: auto;
            box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
        }

        .mobile-menu.active .mobile-menu-content {
            transform: translateX(0);
        }

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

        .mobile-nav {
            list-style: none;
        }

        .mobile-nav li {
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
        }

        .mobile-nav a {
            color: #9dc2cd;
            font-size: 1.2rem;
            font-weight: bold;
            display: block;
            padding: 0.8rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .mobile-nav a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(80, 175, 77, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .mobile-nav a:hover::before {
            transform: translateX(0);
        }

        .mobile-nav a:hover {
            color: white;
            text-decoration: none;
            padding-left: 1.5rem;
        }

        .close-menu {
            background: none;
            border: none;
            font-size: 2.5rem;
            color: #9dc2cd;
            cursor: pointer;
            padding: 0.5rem;
            line-height: 1;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-menu:hover {
            color: var(--accent-color);
            background: rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        footer {
            background: #142417;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(80, 175, 77, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(35, 182, 196, 0.05) 0%, transparent 50%);
            z-index: 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-family: 'Russo One', sans-serif;
            font-size: 1.5rem;
            color: #9dc2cd;
            margin-bottom: 1rem;
        }

        .footer-nav h3 {
            color: #e32a2a;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-align: left;
            border-bottom: 2px solid rgba(227, 42, 42, 0.3);
            padding-bottom: 0.5rem;
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1rem;
        }

        .footer-nav li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .footer-nav li:hover::before {
            transform: translateX(3px);
        }

        .footer-nav a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
            display: block;
            padding: 0.2rem 0;
        }

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

        .copyright {
            text-align: center;
            color: #c4bdbd;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            
            .nav-list {
                gap: 1rem;
            }
            
            .nav-list li a {
                padding: 0.5rem 0.8rem;
                font-size: 0.85rem;
            }
            
            .section {
                padding: 2rem;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            h3 {
                font-size: 1.3rem;
            }
            
            .header-content {
                flex-wrap: wrap;
            }
            
            .main-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .auth-buttons {
                display: none;
            }
            
            .section {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }
            
            .features-list li,
            .numbered-list li {
                padding-left: 2.5rem;
            }
            
            .numbered-list li::before {
                left: 1rem;
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
            
            .styled-table {
                font-size: 0.9rem;
            }
            
            .styled-table th,
            .styled-table td {
                padding: 0.8rem 0.5rem;
            }
            
            .payment-table td {
                padding-left: 50px;
                background-position: 10px center;
                background-size: 30px;
            }
        }

        @media (max-width: 480px) {
            html {
                font-size: 16px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.3rem;
            }
            
            .btn-auth,
            .btn-primary {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .table-container {
                margin: 1rem -1rem;
                border-radius: 0;
            }
            
            .styled-table {
                font-size: 0.85rem;
            }
        }

        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Focus styles for accessibility */
        a:focus,
        button:focus {
            outline: 3px solid var(--accent-color);
            outline-offset: 3px;
        }

        /* Skip to main content link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary-color);
            color: white;
            padding: 8px;
            z-index: 1001;
            transition: top 0.3s;
            border-radius: 0 0 4px 0;
            font-weight: bold;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Loading animation */
        .loading {
            display: inline-block;
            width: 50px;
            height: 50px;
            border: 3px solid rgba(80, 175, 77, 0.3);
            border-radius: 50%;
            border-top-color: var(--accent-color);
            animation: spin 1s ease-in-out infinite;
        }

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

        /* Chip Animation */
        .chip {
            display: inline-block;
            width: 60px;
            height: 60px;
            background: radial-gradient(circle at 30% 30%, #FFD700, #B8860B);
            border-radius: 50%;
            position: relative;
            margin: 0 10px;
            animation: chipSpin 3s infinite linear;
            box-shadow: 
                inset 0 0 20px rgba(255, 255, 255, 0.3),
                0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .chip::before,
        .chip::after {
            content: '';
            position: absolute;
            border-radius: 50%;
        }

        .chip::before {
            top: 10%;
            left: 10%;
            width: 80%;
            height: 80%;
            background: radial-gradient(circle at 40% 40%, transparent 30%, rgba(255, 255, 255, 0.1) 100%);
        }

        .chip::after {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30%;
            height: 30%;
            background: rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        @keyframes chipSpin {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

        /* Card Deck Animation */
        .card-deck {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 2rem 0;
        }

        .card {
            width: 60px;
            height: 80px;
            background: white;
            border-radius: 5px;
            position: relative;
            transform-style: preserve-3d;
            animation: cardShuffle 2s infinite;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .card:nth-child(1) { animation-delay: 0s; background: linear-gradient(45deg, #FF4444, #FF8888); }
        .card:nth-child(2) { animation-delay: 0.2s; background: linear-gradient(45deg, #4444FF, #8888FF); }
        .card:nth-child(3) { animation-delay: 0.4s; background: linear-gradient(45deg, #44FF44, #88FF88); }
        .card:nth-child(4) { animation-delay: 0.6s; background: linear-gradient(45deg, #FFFF44, #FFFF88); }

        .card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: 5px;
            transform: translateZ(-1px);
        }

        @keyframes cardShuffle {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }