/* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a2e38 0%, #0c3b4d 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Background Animation */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
            animation: float 15s infinite linear;
        }
        
        .floating-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
            animation-duration: 20s;
        }
        
        .floating-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 10%;
            animation-delay: -5s;
            animation-duration: 25s;
        }
        
        .floating-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 15%;
            animation-delay: -10s;
            animation-duration: 30s;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            color: #ffd700;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin: 2rem 0;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
            animation: pulse-gold 3s infinite, text-glow 2s ease-in-out infinite alternate;
        }
        
        h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 0.5rem;
            margin-top: 2.5rem;
            animation: slideInLeft 1s ease-out;
        }
        
        h3 {
            font-size: 1.8rem;
            color: #4ecdc4;
            margin-top: 2rem;
            animation: slideInRight 1s ease-out 0.3s both;
        }
        
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            animation: fadeIn 1.5s ease-out;
        }
        
        a {
            color: #4ecdc4;
            text-decoration: none;
            transition: color 0.3s, transform 0.3s;
        }
        
        a:hover {
            color: #ffd700;
            transform: translateY(-2px);
        }
        
        /* Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Header & Navigation */
        header {
            background: rgba(10, 25, 34, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            animation: slideDown 0.8s ease-out;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            position: relative;
        }
        
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: spin-logo 20s linear infinite, glow 2s ease-in-out infinite alternate;
            text-decoration: none;
            position: relative;
        }
        
        .logo span {
            color: #4ecdc4;
            animation: color-shift 3s infinite alternate;
        }
        
        /* Main Navigation */
        .main-nav {
            display: flex;
            flex: 1;
            justify-content: flex-end;
            margin-left: 2rem;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: nowrap;
            white-space: nowrap;
        }
        
        .nav-list li {
            flex-shrink: 0;
        }
        
        .nav-list a {
            color: #f0f0f0;
            font-weight: 600;
            padding: 0.6rem 0.8rem;
            border-radius: 4px;
            transition: all 0.4s;
            display: block;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }
        
        .nav-list a:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, #ffd700, #4ecdc4);
            transform: translateX(-100%);
            transition: transform 0.4s;
        }
        
        .nav-list a:hover:before {
            transform: translateX(0);
        }
        
        .nav-list a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: #ffd700;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            animation: pulse 2s infinite;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(10, 25, 34, 0.8), rgba(10, 25, 34, 0.9));
            background-size: cover;
            background-position: center;
            padding: 6rem 2rem;
            text-align: center;
            border-bottom: 3px solid #ffd700;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            animation: shine 3s infinite;
        }
        
        .hero h2 {
            font-size: 3rem;
            border: none;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out, float-text 4s ease-in-out infinite;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #ffd700, #ffaa00);
            color: #0a2e38;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.4s;
            box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
            animation: pulse-shadow 2s infinite;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, #4ecdc4, #2a9d8f);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .btn:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20%;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(30deg);
            transition: all 0.6s;
            z-index: 1;
        }
        
        .btn:hover:before {
            left: 0;
        }
        
        .btn:hover:after {
            left: 120%;
        }
        
        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 25px rgba(255, 215, 0, 0.8);
            color: #0a2e38;
        }
        
        /* Main Content Sections */
        main {
            padding: 2rem 0 4rem;
        }
        
        .content-section {
            margin-bottom: 4rem;
            background: rgba(15, 40, 55, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.1);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .content-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #ffd700, #4ecdc4, #ffd700);
            transform: translateX(-100%);
            animation: section-shine 6s infinite;
        }
        
        .content-section:hover {
            transform: translateY(-15px) scale(1.01);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 215, 0, 0.3);
        }
        
        /* Text Content Blocks */
        .text-block {
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background: rgba(20, 50, 70, 0.5);
            border-radius: 8px;
            border-left: 4px solid #ffd700;
            animation: slideInUp 0.8s ease-out;
            transition: all 0.4s;
        }
        
        .text-block:hover {
            border-left-width: 8px;
            transform: translateX(10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .text-block-alt {
            border-left-color: #4ecdc4;
        }
        
        /* Lists with Enhanced Animations */
        ul, ol {
            margin: 1.5rem 0 1.5rem 2rem;
            padding-left: 1rem;
        }
        
        ul li, ol li {
            margin-bottom: 0.8rem;
            padding-left: 0.5rem;
            position: relative;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInRight 0.6s forwards;
            list-style-type: none;
        }
        
        ul li {
            list-style: none;
        }
        
        ul li:before {
            content: '★';
            color: #ffd700;
            position: absolute;
            left: -1.5rem;
            animation: spin-star 3s infinite linear, bounce 1s infinite;
        }
        
        ol li {
            counter-increment: list-counter;
        }
        
        ol li:before {
            content: counter(list-counter) '.';
            color: #4ecdc4;
            font-weight: bold;
            position: absolute;
            left: -1.8rem;
            animation: count-up 0.5s ease-out forwards;
        }
        
        /* Staggered animation for list items */
        ul li:nth-child(1) { animation-delay: 0.1s; }
        ul li:nth-child(2) { animation-delay: 0.2s; }
        ul li:nth-child(3) { animation-delay: 0.3s; }
        ul li:nth-child(4) { animation-delay: 0.4s; }
        ul li:nth-child(5) { animation-delay: 0.5s; }
        
        ol li:nth-child(1) { animation-delay: 0.15s; }
        ol li:nth-child(2) { animation-delay: 0.3s; }
        ol li:nth-child(3) { animation-delay: 0.45s; }
        ol li:nth-child(4) { animation-delay: 0.6s; }
        
        /* Table Styles with Animations */
        .tableblock {
            margin: 2rem 0;
            overflow-x: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.8s ease-out 0.5s both;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: rgba(25, 60, 80, 0.8);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        th {
            background: linear-gradient(to right, #ffd700, #ffaa00);
            color: #0a2e38;
            padding: 1.2rem 1rem;
            text-align: left;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        th:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: table-shine 3s infinite;
        }
        
        td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
            animation: fadeIn 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(10px);
        }
        
        tr:hover td {
            background: rgba(255, 215, 0, 0.15);
            transform: scale(1.02);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        /* Sidebar with Animations */
        aside {
            background: rgba(15, 40, 55, 0.8);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(78, 205, 196, 0.3);
            animation: slideInRight 1s ease-out 0.5s both;
            position: relative;
            overflow: hidden;
        }
        
        aside:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #4ecdc4, #ffd700);
            animation: sidebar-glow 4s infinite;
        }
        
        aside h3 {
            margin-top: 0;
            color: #ffd700;
            animation: none;
        }
        
        .sidebar-list {
            list-style: none;
            margin-left: 0;
        }
        
        .sidebar-list li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background: rgba(25, 60, 80, 0.5);
            border-radius: 6px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-left: 3px solid transparent;
            animation: slideInLeft 0.6s forwards;
            opacity: 0;
            transform: translateX(-20px);
        }
        
        .sidebar-list li:nth-child(1) { animation-delay: 0.1s; }
        .sidebar-list li:nth-child(2) { animation-delay: 0.2s; }
        .sidebar-list li:nth-child(3) { animation-delay: 0.3s; }
        .sidebar-list li:nth-child(4) { animation-delay: 0.4s; }
        .sidebar-list li:nth-child(5) { animation-delay: 0.5s; }
        .sidebar-list li:nth-child(6) { animation-delay: 0.6s; }
        
        .sidebar-list li:hover {
            background: rgba(255, 215, 0, 0.15);
            transform: translateX(15px) scale(1.05);
            border-left-color: #ffd700;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        /* Footer */
        footer {
            background: rgba(5, 15, 25, 0.95);
            padding: 3rem 0 2rem;
            border-top: 3px solid #ffd700;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 20%, rgba(255,215,0,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }
        .footer-section:nth-child(4) { animation-delay: 0.4s; }
        
        .footer-section h3 {
            color: #ffd700;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            animation: none;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
            transition: all 0.3s;
        }
        
        .footer-links li:hover {
            transform: translateX(5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
            animation: fadeIn 1s ease-out 1s both;
        }
        
        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(to right, #ffd700, #ffaa00);
            color: #0a2e38;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            cursor: pointer;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            border: none;
            animation: bounce 2s infinite;
            transform-origin: center;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.8);
        }
        
        /* Mobile Responsive */
        @media (max-width: 1100px) {
            .nav-list {
                gap: 0.3rem;
            }
            
            .nav-list a {
                padding: 0.5rem 0.6rem;
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }
            
            .logo-container {
                order: 1;
                width: auto;
                margin-bottom: 0;
            }
            
            .mobile-menu-btn {
                display: block;
                order: 2;
            }
            
            .main-nav {
                order: 3;
                width: 100%;
                display: none;
                margin-top: 1rem;
                margin-left: 0;
            }
            
            .main-nav.active {
                display: block;
            }
            
            .nav-list {
                flex-direction: column;
                gap: 0.5rem;
                white-space: normal;
            }
            
            .nav-list li {
                width: 100%;
            }
            
            .nav-list a {
                padding: 1rem;
                text-align: center;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                width: 100%;
            }
            
            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }
        
        /* Enhanced Animations */
        @keyframes spin-logo {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }
        
        @keyframes glow {
            0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3); }
            100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4); }
        }
        
        @keyframes text-glow {
            0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
            50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6); }
        }
        
        @keyframes pulse-gold {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.9; transform: scale(1.02); }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-100%);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes spin-star {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.2); }
            100% { transform: rotate(360deg) scale(1); }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        @keyframes count-up {
            0% { opacity: 0; transform: scale(0); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.9; }
        }
        
        @keyframes pulse-shadow {
            0%, 100% { box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4); }
            50% { box-shadow: 0 6px 25px rgba(255, 215, 0, 0.7); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        @keyframes float-text {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes color-shift {
            0% { color: #4ecdc4; }
            100% { color: #ffd700; }
        }
        
        @keyframes section-shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        @keyframes table-shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        @keyframes sidebar-glow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        
        @keyframes row-appear {
            0% { opacity: 0; transform: translateY(10px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        
        /* Additional Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }