/* CSS Reset / Normalize */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #0c3c14;
            --secondary-color: #c5a028;
            --accent-color: #8b0000;
            --dark-color: #051a09;
            --light-color: #f8f5f0;
            --text-color: #333;
            --text-light: #666;
            --text-dark: #222;
            --text-white: #ffffff;
            --gold-light: #e6d5a5;
            --gold-dark: #8b6e2c;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --border-radius: 8px;
            --border-radius-sm: 4px;
            --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
            --gradient-gold: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-light) 100%);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
            position: relative;
            font-weight: 400;
            min-height: 100vh;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }
        
        h1 {
            font-size: 3rem;
            text-align: center;
            margin: 4rem 0 2rem;
            position: relative;
            padding-bottom: 1.5rem;
            letter-spacing: -0.5px;
        }
        
        h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: var(--gradient-gold);
            border-radius: 1px;
        }
        
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            padding-bottom: 0.8rem;
            position: relative;
            display: inline-block;
            letter-spacing: -0.3px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--gradient-gold);
            border-radius: 1px;
            transition: var(--transition);
        }
        
        h2:hover:after {
            width: 120px;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: var(--primary-color);
            font-weight: 500;
            position: relative;
            padding-left: 0;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.7;
        }
        
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            font-weight: 500;
        }
        
        a:hover {
            color: var(--accent-color);
        }
        
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 2rem;
        }
        
        li {
            margin-bottom: 0.8rem;
            position: relative;
            color: var(--text-light);
        }
        
        /* Header Styles - Sophisticated Design */
        header {
            background: var(--dark-color);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(197, 160, 40, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 3rem;
            max-width: 1600px;
            margin: 0 auto;
        }
        
        /* COMPLETELY REDESIGNED LOGO - Sophisticated & Serious */
        .logo-container {
            display: flex;
            align-items: center;
            position: relative;
            flex-shrink: 0;
        }
        
        .logo {
            position: relative;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        /* Premium Logo Mark */
        .logo-mark {
            position: relative;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-frame {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--secondary-color);
            border-radius: var(--border-radius-sm);
            transform: rotate(45deg);
            animation: frameGlow 8s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(197, 160, 40, 0.1);
        }
        
        @keyframes frameGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(197, 160, 40, 0.1);
                border-color: var(--secondary-color);
            }
            50% {
                box-shadow: 0 0 30px rgba(197, 160, 40, 0.2);
                border-color: var(--gold-light);
            }
        }
        
        .logo-inner {
            position: relative;
            z-index: 2;
            transform: rotate(-45deg);
            font-size: 1.8rem;
            color: var(--secondary-color);
            font-weight: 700;
            font-family: 'Cormorant Garamond', serif;
            letter-spacing: 1px;
        }
        
        /* Subtle Sparkle Effect */
        .logo-sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold-light);
            border-radius: 50%;
            opacity: 0;
            animation: sparkleFade 6s infinite;
        }
        
        .logo-sparkle:nth-child(1) { top: 5px; left: 5px; animation-delay: 0s; }
        .logo-sparkle:nth-child(2) { top: 5px; right: 5px; animation-delay: 2s; }
        .logo-sparkle:nth-child(3) { bottom: 5px; left: 5px; animation-delay: 4s; }
        .logo-sparkle:nth-child(4) { bottom: 5px; right: 5px; animation-delay: 1s; }
        
        @keyframes sparkleFade {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1); }
        }
        
        /* Logo Text */
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-main-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1.5px;
            line-height: 1;
            margin-bottom: 0.2rem;
            position: relative;
            display: inline-block;
        }
        
        .logo-main-text:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gradient-gold);
            transition: var(--transition);
            animation: lineGrow 6s ease-in-out infinite;
        }
        
        @keyframes lineGrow {
            0%, 100% { width: 0; }
            50% { width: 100%; }
        }
        
        .logo-subtext {
            font-size: 0.75rem;
            color: var(--gold-light);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 300;
            opacity: 0.8;
        }
        
        /* Navigation - Elegant */
        .nav-container {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            min-width: 0;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            white-space: nowrap;
            flex-wrap: nowrap;
            overflow: visible;
        }
        
        .nav-menu li {
            margin: 0 0.1rem;
            position: relative;
            flex-shrink: 0;
        }
        
        .nav-menu a {
            color: rgba(255, 255, 255, 0.9);
            padding: 0.8rem 1.2rem;
            font-weight: 400;
            display: block;
            position: relative;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: var(--transition);
        }
        
        .nav-menu a:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            transition: var(--transition);
            border-radius: 1px;
        }
        
        .nav-menu a:hover {
            color: white;
        }
        
        .nav-menu a:hover:before {
            width: 70%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: 1px solid rgba(197, 160, 40, 0.3);
            color: var(--secondary-color);
            width: 44px;
            height: 44px;
            border-radius: var(--border-radius-sm);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 1rem;
            flex-shrink: 0;
        }
        
        .mobile-menu-btn:hover {
            border-color: var(--secondary-color);
            background: rgba(197, 160, 40, 0.1);
        }
        
        /* Main Content */
        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 3rem;
            position: relative;
            z-index: 2;
        }
        
        /* Hero Section - Sophisticated */
        .hero {
            background: var(--gradient-dark);
            color: white;
            text-align: center;
            padding: 5rem 3rem;
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            z-index: 2;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(197, 160, 40, 0.2) 0%, transparent 50%),
                repeating-linear-gradient(45deg, transparent 0px, transparent 2px, rgba(197, 160, 40, 0.05) 2px, rgba(197, 160, 40, 0.05) 4px);
            opacity: 0.5;
            animation: heroPattern 20s linear infinite;
        }
        
        @keyframes heroPattern {
            0% { 
                background-position: 0 0, 0 0, 0 0;
                transform: scale(1);
            }
            50% { 
                background-position: 50px 50px, -50px -50px, 100px 100px;
                transform: scale(1.05);
            }
            100% { 
                background-position: 100px 100px, -100px -100px, 200px 200px;
                transform: scale(1);
            }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            color: white;
            border: none;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
        }
        
        .hero h2:after {
            background: var(--gradient-gold);
            left: 50%;
            transform: translateX(-50%);
        }
        
        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 auto 2.5rem;
            max-width: 600px;
        }
        
        .cta-button {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: var(--border-radius-sm);
            font-weight: 500;
            font-size: 1rem;
            border: 1px solid var(--secondary-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-gold);
            transition: var(--transition);
            z-index: -1;
        }
        
        .cta-button:hover {
            color: var(--dark-color);
        }
        
        .cta-button:hover:before {
            left: 0;
        }
        
        /* Text Blocks */
        .textbb {
            background: white;
            border-radius: var(--border-radius);
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: var(--shadow);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 2;
        }
        
        .textbb:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-gold);
            border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
        }
        
        /* COMPLETELY REDESIGNED TABLES - Premium & Sophisticated */
        .dvitable {
            margin: 3rem 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: white;
            position: relative;
            z-index: 2;
        }
        
        .dvitable:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-gold);
            animation: tableShine 8s ease-in-out infinite;
        }
        
        @keyframes tableShine {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }
        
        .dvitable table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            table-layout: fixed;
        }
        
        .dvitable thead {
            background: var(--dark-color);
            position: relative;
        }
        
        .dvitable thead:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-gold);
        }
        
        .dvitable th {
            padding: 1.5rem 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: left;
            position: relative;
            color: white;
            font-size: 0.85rem;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            min-width: 150px;
        }
        
        .dvitable th:last-child {
            border-right: none;
        }
        
        .dvitable th:hover {
            background: rgba(197, 160, 40, 0.1);
        }
        
        .dvitable th:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0.5rem;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: var(--gradient-gold);
            transition: var(--transition);
            border-radius: 1.5px;
        }
        
        .dvitable th:hover:before {
            height: 60%;
        }
        
        .dvitable tbody tr {
            transition: var(--transition);
            position: relative;
        }
        
        .dvitable tbody tr:not(:last-child) {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .dvitable tbody tr:nth-child(even) {
            background-color: rgba(248, 245, 240, 0.5);
        }
        
        .dvitable tbody tr:hover {
            background-color: rgba(197, 160, 40, 0.05);
        }
        
        .dvitable td {
            padding: 1.5rem 1.5rem;
            color: var(--text-color);
            position: relative;
            transition: var(--transition);
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            min-width: 150px;
            font-weight: 400;
        }
        
        .dvitable td:last-child {
            border-right: none;
        }
        
        .dvitable tbody tr:hover td {
            color: var(--primary-color);
        }
        
        .dvitable td:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
            background: var(--gradient-gold);
            transition: var(--transition);
            opacity: 0.1;
        }
        
        .dvitable tbody tr:hover td:before {
            width: 3px;
        }
        
        /* Column alignment fix */
        .dvitable th,
        .dvitable td {
            vertical-align: top;
        }
        
        /* Custom text block styles */
        .textbb ol {
            counter-reset: item;
            list-style-type: none;
            padding-left: 0;
            position: relative;
        }
        
        .textbb ol li {
            counter-increment: item;
            margin-bottom: 1.2rem;
            padding-left: 3rem;
            position: relative;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .textbb ol li:before {
            content: counter(item);
            background: var(--dark-color);
            color: var(--gold-light);
            font-weight: 500;
            border-radius: 50%;
            width: 2rem;
            height: 2rem;
            text-align: center;
            line-height: 2rem;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        
        .textbb ol li:hover:before {
            background: var(--gradient-gold);
            color: var(--dark-color);
            transform: scale(1.05);
        }
        
        .textbb ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .textbb ul li {
            padding-left: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .textbb ul li:before {
            content: '▸';
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .textbb ul li:hover:before {
            color: var(--accent-color);
            transform: translateX(3px);
        }
        
        /* Sidebar Resources List - Fixed for white background */
        .sidebar-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .sidebar-links li {
            margin-bottom: 0.8rem;
            transform: translateX(0);
            transition: var(--transition);
            position: relative;
            padding-left: 1.5rem;
        }
        
        .sidebar-links li:hover {
            transform: translateX(5px);
        }
        
        .sidebar-links li:before {
            content: '•';
            color: var(--secondary-color);
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .sidebar-links li:hover:before {
            color: var(--accent-color);
        }
        
        .sidebar-links a {
            color: var(--text-color);
            transition: var(--transition);
            display: inline-block;
            padding: 0.2rem 0;
            font-weight: 400;
            font-size: 1rem;
            line-height: 1.5;
        }
        
        .sidebar-links a:hover {
            color: var(--secondary-color);
        }
        
        /* Footer - Elegant */
        footer {
            background: var(--dark-color);
            color: rgba(255, 255, 255, 0.8);
            padding: 4rem 3rem 2rem;
            margin-top: 5rem;
            position: relative;
            z-index: 2;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-gold);
            animation: footerGlow 4s ease-in-out infinite;
        }
        
        @keyframes footerGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .footer-section h3 {
            color: var(--gold-light);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            position: relative;
            font-weight: 500;
        }
        
        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 1px;
            background: var(--gradient-gold);
            transition: var(--transition);
        }
        
        .footer-section:hover h3:after {
            width: 80px;
        }
        
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
            transform: translateX(0);
            transition: var(--transition);
        }
        
        .footer-links li:hover {
            transform: translateX(5px);
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            display: inline-block;
            padding: 0.2rem 0;
            font-weight: 400;
            font-size: 0.95rem;
        }
        
        .footer-links a:hover {
            color: var(--gold-light);
        }
        
        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius-sm);
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-links a:hover {
            background: rgba(197, 160, 40, 0.1);
            color: var(--gold-light);
            border-color: rgba(197, 160, 40, 0.3);
            transform: translateY(-2px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            max-width: 1400px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Ensure good contrast for footer text */
        footer p,
        footer .footer-section p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2.5rem;
            right: 2.5rem;
            background: var(--dark-color);
            color: var(--gold-light);
            width: 50px;
            height: 50px;
            border-radius: var(--border-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            border: 1px solid rgba(197, 160, 40, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: rgba(197, 160, 40, 0.1);
            border-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* ============ ENHANCED ANIMATED BACKGROUND ELEMENTS ============ */
        
        /* Main animated background container */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        
        /* Animated gradient overlay */
        .animated-gradient {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(197, 160, 40, 0.15) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(12, 60, 20, 0.15) 0%, transparent 30%),
                radial-gradient(circle at 40% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 60% 20%, rgba(197, 160, 40, 0.1) 0%, transparent 25%);
            animation: gradientOrbit 60s linear infinite;
            filter: blur(40px);
        }
        
        @keyframes gradientOrbit {
            0% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            25% {
                transform: translate(-5%, 3%) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translate(3%, -5%) rotate(180deg) scale(1.05);
            }
            75% {
                transform: translate(-3%, 5%) rotate(270deg) scale(1.1);
            }
            100% {
                transform: translate(0, 0) rotate(360deg) scale(1);
            }
        }
        
        /* Dynamic grid pattern */
        .dynamic-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(197, 160, 40, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(197, 160, 40, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 40s linear infinite;
        }
        
        @keyframes gridMove {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 100px 100px;
            }
        }
        
        /* Floating diamond shapes */
        .diamond-shape {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, rgba(197, 160, 40, 0.1), rgba(230, 213, 165, 0.05));
            transform: rotate(45deg);
            animation: diamondFloat 25s ease-in-out infinite;
            border: 1px solid rgba(197, 160, 40, 0.2);
        }
        
        @keyframes diamondFloat {
            0%, 100% {
                transform: translate(0, 0) rotate(45deg) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translate(100px, -50px) rotate(90deg) scale(1.2);
                opacity: 0.5;
            }
            50% {
                transform: translate(-50px, 100px) rotate(135deg) scale(1.1);
                opacity: 0.4;
            }
            75% {
                transform: translate(150px, 50px) rotate(180deg) scale(1.3);
                opacity: 0.6;
            }
        }
        
        /* Pulsing circles */
        .pulse-circle {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(197, 160, 40, 0.3);
            animation: pulseCircle 15s ease-in-out infinite;
        }
        
        @keyframes pulseCircle {
            0%, 100% {
                transform: scale(0.8);
                opacity: 0.2;
                box-shadow: 0 0 20px rgba(197, 160, 40, 0.1);
            }
            50% {
                transform: scale(1.5);
                opacity: 0.4;
                box-shadow: 0 0 50px rgba(197, 160, 40, 0.3);
            }
        }
        
        /* Gold shimmer effect */
        .gold-shimmer {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(197, 160, 40, 0.1) 25%,
                rgba(230, 213, 165, 0.2) 50%,
                rgba(197, 160, 40, 0.1) 75%,
                transparent 100%
            );
            animation: shimmerMove 20s linear infinite;
            transform: skewX(-20deg);
        }
        
        @keyframes shimmerMove {
            0% {
                transform: translateX(-100%) skewX(-20deg);
            }
            100% {
                transform: translateX(100%) skewX(-20deg);
            }
        }
        
        /* Floating coin animation */
        .floating-coin {
            position: absolute;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(197, 160, 40, 0.8), rgba(139, 106, 44, 0.6));
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(197, 160, 40, 0.5);
            animation: coinFloat 20s linear infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        @keyframes coinFloat {
            0% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translate(calc(100vw - 100px), calc(100vh - 100px)) rotate(720deg) scale(0.5);
                opacity: 0;
            }
        }
        
        /* Animated border glow */
        .border-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid transparent;
            border-image: linear-gradient(45deg, rgba(197, 160, 40, 0.3), rgba(12, 60, 20, 0.3), rgba(197, 160, 40, 0.3)) 1;
            animation: borderPulse 8s ease-in-out infinite;
            pointer-events: none;
        }
        
        @keyframes borderPulse {
            0%, 100% {
                box-shadow: 
                    inset 0 0 50px rgba(197, 160, 40, 0.1),
                    0 0 50px rgba(197, 160, 40, 0.1);
            }
            50% {
                box-shadow: 
                    inset 0 0 100px rgba(197, 160, 40, 0.2),
                    0 0 100px rgba(197, 160, 40, 0.2);
            }
        }
        
        /* Star field animation */
        .star-field {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.8) 1px, transparent 0),
                radial-gradient(2px 2px at 20% 30%, rgba(230, 213, 165, 0.7) 1px, transparent 0),
                radial-gradient(1px 1px at 30% 40%, rgba(197, 160, 40, 0.6) 1px, transparent 0),
                radial-gradient(2px 2px at 40% 50%, rgba(255, 255, 255, 0.8) 1px, transparent 0),
                radial-gradient(1px 1px at 50% 60%, rgba(230, 213, 165, 0.7) 1px, transparent 0),
                radial-gradient(2px 2px at 60% 70%, rgba(197, 160, 40, 0.6) 1px, transparent 0),
                radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, 0.8) 1px, transparent 0),
                radial-gradient(2px 2px at 80% 90%, rgba(230, 213, 165, 0.7) 1px, transparent 0);
            background-size: 300px 300px;
            animation: starTwinkle 5s ease-in-out infinite;
        }
        
        @keyframes starTwinkle {
            0%, 100% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.8;
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .header-container {
                padding: 1.2rem 2rem;
            }
            
            main {
                padding: 2rem;
            }
            
            .nav-menu a {
                padding: 0.8rem 1rem;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 1100px) {
            .header-container {
                flex-wrap: wrap;
                justify-content: space-between;
            }
            
            .logo-container {
                order: 1;
                width: auto;
                margin-bottom: 0;
            }
            
            .nav-container {
                order: 3;
                width: 100%;
                margin-top: 1.5rem;
                display: none;
            }
            
            .nav-container.active {
                display: block;
            }
            
            .nav-menu {
                flex-direction: column;
                background: var(--dark-color);
                border-radius: var(--border-radius);
                padding: 1rem 0;
                border: 1px solid rgba(197, 160, 40, 0.2);
            }
            
            .nav-menu li {
                margin: 0;
            }
            
            .nav-menu a {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
            
            .mobile-menu-btn {
                display: block;
                order: 2;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .textbb {
                padding: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem 1.5rem;
            }
            
            main {
                padding: 1.5rem;
            }
            
            .hero {
                padding: 4rem 1.5rem;
            }
            
            h1 {
                font-size: 2rem;
                margin: 3rem 0 1.5rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .textbb {
                padding: 2rem;
            }
            
            .dvitable th,
            .dvitable td {
                padding: 1.2rem 1rem;
                min-width: 120px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            
            .back-to-top {
                width: 45px;
                height: 45px;
                bottom: 1.5rem;
                right: 1.5rem;
            }
            
            .logo {
                gap: 1rem;
            }
            
            .logo-main-text {
                font-size: 1.8rem;
            }
            
            .sidebar-links li {
                padding-left: 1rem;
            }
            
            .sidebar-links a {
                font-size: 0.95rem;
            }
        }
        
        /* 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 */
        a:focus, button:focus {
            outline: 2px solid var(--secondary-color);
            outline-offset: 2px;
        }
        
        /* Improved text contrast */
        strong, b {
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .hero p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Ensure table text is readable */
        .dvitable td {
            color: var(--text-color);
        }
        
        .dvitable tbody tr:hover td {
            color: var(--primary-color);
        }
        
        /* Performance optimizations */
        .bg-animation * {
            will-change: transform, opacity, background-position;
        }
        
        /* Reduced motion preference */
        @media (prefers-reduced-motion: reduce) {
            .bg-animation *,
            .hero:before,
            .dvitable:before,
            footer:before {
                animation: none !important;
            }
        }