/* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #f8f9fa;
            background: linear-gradient(135deg, #0c1a2d 0%, #1a2b3c 100%);
            min-height: 100vh;
            position: relative;
        }
        
        a {
            text-decoration: none;
            color: #0cca0c;
            transition: all 0.3s ease;
        }
        
        ul, ol {
            list-style-position: inside;
            margin: 1rem 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        th, td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        th {
            background-color: rgba(255, 215, 0, 0.1);
            font-weight: 600;
        }
        
        tr:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #0c1a2d;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .btn:hover:before {
            width: 100%;
        }
        
        /* Header & Logo Styles */
        header {
            padding: 20px 0;
            position: relative;
            z-index: 1000;
        }
        
        .logo-container {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .logo {
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            animation: logoGlow 2s infinite alternate;
        }
        
        @keyframes logoGlow {
            0% {
                filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
            }
            100% {
                filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
            }
        }
        
        .logo:after {
            content: 'AUSTRALIA CASINO';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            letter-spacing: 3px;
            color: #FFD700;
            width: 100%;
            text-align: center;
        }
        
        /* Main Layout */
        .main-content {
            display: flex;
            min-height: calc(100vh - 200px);
        }
        
        .content-area {
            flex: 1;
            padding: 0 40px 40px;
            max-width: 900px;
        }
        
        /* Right Side Navigation */
        .side-nav {
            width: 280px;
            background: rgba(10, 25, 41, 0.95);
            border-left: 1px solid rgba(255, 215, 0, 0.2);
            padding: 30px 20px;
            position: sticky;
            top: 0;
            height: 100vh;
            overflow-y: auto;
            z-index: 900;
        }
        
        .side-nav h2 {
            font-size: 1.2rem;
            color: #FFD700;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .main-menu {
            list-style: none;
        }
        
        .main-menu li {
            margin-bottom: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .main-menu a {
            display: block;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .main-menu a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: #FFD700;
            transform: translateX(5px);
        }
        
        .main-menu a.active {
            background: rgba(255, 215, 0, 0.15);
            color: #FFD700;
            border-left: 4px solid #FFD700;
        }
        
        .main-menu li:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .main-menu li:hover:before {
            left: 100%;
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1100;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #0c1a2d;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            border: none;
        }
        
        /* Hero Section */
        .hero {
            padding: 40px 0;
            margin-bottom: 50px;
            text-align: center;
            animation: fadeInUp 1s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #c0c0c0;
        }
        
        /* Text Section Styles */
        .text-section {
            background: rgba(15, 30, 50, 0.7);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 215, 0, 0.1);
            animation: fadeIn 1s ease-out;
            animation-fill-mode: both;
        }
        
        #text1 {
            animation-delay: 0.2s;
        }
        
        #text2 {
            animation-delay: 0.4s;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .section-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            color: #FFD700;
            margin-bottom: 15px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #c0c0c0;
        }
        
        .content-block {
            margin: 40px 0;
            padding: 25px;
            background: rgba(10, 25, 41, 0.5);
            border-radius: 10px;
            border-left: 4px solid #FFD700;
        }
        
        .content-block h3 {
            font-size: 1.6rem;
            color: #FFD700;
            margin-bottom: 15px;
        }
        
        .content-block p {
            margin-bottom: 20px;
            color: #e0e0e0;
        }
        
        /* Animated List Items */
        .content-block ol li,
        .content-block ul li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
            animation: slideInRight 0.5s ease-out;
            animation-fill-mode: both;
        }
        
        .content-block ol li:nth-child(1) { animation-delay: 0.1s; }
        .content-block ol li:nth-child(2) { animation-delay: 0.2s; }
        .content-block ol li:nth-child(3) { animation-delay: 0.3s; }
        .content-block ol li:nth-child(4) { animation-delay: 0.4s; }
        .content-block ol li:nth-child(5) { animation-delay: 0.5s; }
        
        .content-block ul li:nth-child(1) { animation-delay: 0.15s; }
        .content-block ul li:nth-child(2) { animation-delay: 0.25s; }
        .content-block ul li:nth-child(3) { animation-delay: 0.35s; }
        .content-block ul li:nth-child(4) { animation-delay: 0.45s; }
        .content-block ul li:nth-child(5) { animation-delay: 0.55s; }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Table Styles */
        .table-block {
            overflow-x: auto;
            margin: 25px 0;
        }
        
        .under {
            padding: 10px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
        }
        
        /* Scroll to Top Button - FIXED */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #0c1a2d;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }
        
        .scroll-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-top:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
        }
        
        /* Footer */
        footer {
            background: rgba(5, 15, 30, 0.95);
            padding: 40px 0;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            margin-top: 50px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .copyright {
            color: #a0a0a0;
            font-size: 0.9rem;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-links a {
            color: #c0c0c0;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            color: #FFD700;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #FFD700;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #FFD700;
            color: #0c1a2d;
            transform: translateY(-3px);
        }
        
        /* Responsive Styles - FIXED MOBILE MENU */
        @media (max-width: 1024px) {
            .main-content {
                flex-direction: column;
            }
            
            .side-nav {
                width: 100%;
                height: auto;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                border-left: none;
                border-bottom: 1px solid rgba(255, 215, 0, 0.2);
                padding: 80px 20px 30px;
                display: none;
                overflow-y: auto;
                z-index: 1000;
                transform: translateY(-100%);
                transition: transform 0.3s ease;
            }
            
            .side-nav.mobile-open {
                display: block;
                transform: translateY(0);
            }
            
            .content-area {
                padding: 0 20px 40px;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .logo {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .text-section {
                padding: 25px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .content-block {
                padding: 20px;
            }
            
            .content-block h3 {
                font-size: 1.4rem;
            }
            
            .logo {
                font-size: 2.2rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .text-section {
                padding: 20px;
            }
            
            .section-header h2 {
                font-size: 1.5rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .logo {
                font-size: 1.8rem;
            }
            
            .mobile-menu-toggle {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
        }