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

        :root {
            --primary-color: #ff6600;
            --primary-dark: #cc5200;
            --primary-light: #ff8533;
            --secondary-color: #003366;
            --secondary-light: #004080;
            --secondary-dark: #002244;
            --accent-color: #ffcc00;
            --accent-light: #ffdd55;
            --dark-color: #1a1a1a;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --gray-light: #e9ecef;
            --success-color: #28a745;
            --danger-color: #dc3545;
            --warning-color: #ffc107;
            --info-color: #17a2b8;
            --white: #ffffff;
            --black: #000000;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.15);
            --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            --border-radius: 8px;
            --border-radius-lg: 16px;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-color);
            overflow-x: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul, ol {
            list-style-position: inside;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        /* Skip Link for Accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--white);
            padding: 12px 20px;
            z-index: 1001;
            transition: var(--transition);
            font-weight: 600;
            border-radius: 0 0 var(--border-radius) 0;
            box-shadow: var(--shadow);
        }

        .skip-link:focus {
            top: 0;
            transform: translateY(5px);
        }

        /* Header & Navigation */
        .site-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 0;
            border-bottom: 3px solid var(--primary-color);
            animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            position: relative;
        }

        .logo-container {
            flex: 0 0 auto;
            z-index: 1002;
        }

        .logo-animated {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            position: relative;
            transition: var(--transition);
        }

        .logo-animated:hover {
            transform: scale(1.05);
        }

        .logo-circle {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: rotate 20s linear infinite, glow 2s ease-in-out infinite alternate;
            box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
        }

        .logo-dice-1, .logo-dice-2, .logo-dice-3 {
            position: absolute;
            color: var(--white);
            font-size: 18px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .logo-dice-1 {
            top: 8px;
            left: 8px;
            animation: bounce 1.8s ease-in-out infinite, spin 3s linear infinite;
        }

        .logo-dice-2 {
            top: 8px;
            right: 8px;
            animation: bounce 1.8s ease-in-out infinite 0.2s, spin 3s linear infinite reverse;
        }

        .logo-dice-3 {
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 1.8s ease-in-out infinite 0.4s, spin 3.5s linear infinite;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 800;
            color: var(--secondary-color);
            margin: 0;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            animation: textGlow 3s ease-in-out infinite alternate;
            white-space: nowrap;
        }

        .logo-text span {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-top: 2px;
        }

        /* Main Navigation */
        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
            margin: 0 20px;
            min-width: 0;
            position: relative;
        }

        .nav-list {
            display: flex;
            gap: 5px;
            white-space: nowrap;
            padding: 5px;
            margin: 0;
            flex-wrap: nowrap;
            overflow: visible;
            justify-content: center;
        }

        .nav-item {
            list-style: none;
            flex-shrink: 0;
        }

        .nav-link {
            font-weight: 600;
            padding: 8px 14px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            display: block;
            color: var(--secondary-color);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            border: 2px solid transparent;
            background: linear-gradient(var(--white), var(--white)) padding-box,
                        linear-gradient(135deg, transparent, var(--primary-light)) border-box;
            box-shadow: var(--shadow-light);
            white-space: nowrap;
            text-align: center;
            min-width: max-content;
        }

        .nav-link:hover, .nav-link.active {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) padding-box,
                        linear-gradient(135deg, var(--accent-color), var(--primary-color)) border-box;
            color: var(--white);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3);
            animation: pulseSmall 1.5s infinite;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            transition: var(--transition);
            transform: translateX(-50%);
            border-radius: 3px;
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 70%;
            animation: underlineWidth 1.5s ease-in-out infinite;
        }

        /* Mobile Menu Toggle - FIXED POSITION */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1003;
            transition: var(--transition);
            margin-left: 15px;
        }

        .mobile-menu-toggle:hover {
            transform: scale(1.1);
        }

        .hamburger-line {
            width: 30px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
            transition: var(--transition);
            transform-origin: center;
            position: absolute;
            left: 5px;
        }

        .hamburger-line:nth-child(1) {
            top: 12px;
        }

        .hamburger-line:nth-child(2) {
            top: 18px;
        }

        .hamburger-line:nth-child(3) {
            top: 24px;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        /* Header CTA Button */
        .header-cta {
            flex: 0 0 auto;
            z-index: 1002;
        }

        .header-cta .btn {
            padding: 10px 18px;
            font-size: 13px;
            white-space: nowrap;
        }

        /* Mobile Menu Overlay - FIXED with Close Button in Top Right */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1001;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .mobile-menu-container {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100%;
            background: linear-gradient(135deg, var(--white), #f5f5f5);
            z-index: 1002;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .mobile-menu-container.active {
            right: 0;
        }

        .mobile-menu-header {
            padding: 25px 25px 15px;
            display: flex;
            justify-content: flex-end;
            border-bottom: 2px solid var(--primary-color);
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
            position: relative;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .mobile-menu-close:hover {
            transform: rotate(90deg) scale(1.1);
        }

        .close-line {
            width: 25px;
            height: 3px;
            background: var(--white);
            border-radius: 2px;
            position: absolute;
            transition: var(--transition);
        }

        .close-line:nth-child(1) {
            transform: rotate(45deg);
        }

        .close-line:nth-child(2) {
            transform: rotate(-45deg);
        }

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

        .mobile-nav-list {
            flex: 1;
            padding: 30px 25px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

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

        .mobile-nav-link {
            display: block;
            padding: 16px 20px;
            background: var(--white);
            border-radius: var(--border-radius);
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 2px solid transparent;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mobile-nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
            transition: left 0.6s;
        }

        .mobile-nav-link:hover::before {
            left: 100%;
        }

        .mobile-nav-link:hover, .mobile-nav-link.active {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            transform: translateX(10px);
            border-color: var(--accent-color);
            box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
        }

        .mobile-nav-link i {
            margin-right: 10px;
            font-size: 18px;
            transition: var(--transition);
        }

        .mobile-nav-link:hover i {
            transform: rotate(15deg);
        }

        .mobile-menu-footer {
            padding: 25px;
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
            color: var(--white);
            text-align: center;
            border-top: 2px solid var(--primary-color);
        }

        .mobile-menu-footer .btn {
            width: 100%;
            margin-bottom: 15px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: var(--border-radius);
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 15px;
            box-shadow: var(--shadow);
            white-space: nowrap;
        }

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

        .btn:hover::before {
            left: 100%;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--accent-color));
            border-radius: calc(var(--border-radius) + 2px);
            z-index: -2;
            opacity: 0;
            transition: var(--transition);
            animation: borderRotate 3s linear infinite;
        }

        .btn:hover::after {
            opacity: 1;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            box-shadow: 0 6px 0 var(--primary-dark), 0 12px 20px rgba(255, 102, 0, 0.2);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 10px 0 var(--primary-dark), 0 20px 30px rgba(255, 102, 0, 0.3);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
            color: var(--white);
            box-shadow: 0 6px 0 var(--secondary-dark), 0 12px 20px rgba(0, 51, 102, 0.2);
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 10px 0 var(--secondary-dark), 0 20px 30px rgba(0, 51, 102, 0.3);
        }

        .btn-large {
            padding: 18px 36px;
            font-size: 18px;
        }

        .btn-animated {
            animation: float 3s ease-in-out infinite, pulse 2s infinite;
        }

        .btn i {
            font-size: 18px;
            transition: var(--transition);
        }

        .btn:hover i {
            transform: translateX(5px) rotate(360deg);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 51, 102, 0.85) 100%), 
                        url('/assets/bgimagenz.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 20%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
            animation: gradientShift 10s ease-in-out infinite alternate;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 56px;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease-out 0.2s both, textShadow 3s ease-in-out infinite alternate;
            background: linear-gradient(135deg, var(--white), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 22px;
            max-width: 800px;
            margin: 0 auto 50px;
            animation: fadeInUp 1s ease-out 0.5s both;
            opacity: 0.9;
            font-weight: 300;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            animation: fadeInUp 1s ease-out 0.8s both;
            flex-wrap: wrap;
        }

        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
            animation: gradientMove 3s linear infinite;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: translateX(-50%);
            border-radius: 5px;
            animation: widthPulse 2s ease-in-out infinite;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto 60px;
            animation: fadeInUp 1s ease-out 0.3s both;
            font-size: 18px;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }

        .feature-card {
            background: linear-gradient(145deg, var(--white), #f0f0f0);
            border-radius: var(--border-radius-lg);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition-slow);
            text-align: center;
            border: 1px solid rgba(255, 102, 0, 0.1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .feature-card.animated {
            opacity: 1;
            transform: translateY(0);
            animation: floatCard 6s ease-in-out infinite;
        }

        .feature-card:nth-child(1) { animation-delay: 0s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.4s; }
        .feature-card:nth-child(4) { animation-delay: 0.6s; }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: var(--white);
            transition: var(--transition);
            position: relative;
            box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
            animation: iconFloat 4s ease-in-out infinite;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(360deg) scale(1.1);
            animation: iconPulse 1s ease-in-out;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            z-index: -1;
            opacity: 0.3;
            animation: pulseRing 2s ease-out infinite;
        }

        .feature-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--secondary-color);
            transition: var(--transition);
        }

        .feature-card:hover .feature-title {
            color: var(--primary-color);
            transform: translateY(-5px);
        }

        .feature-description {
            color: var(--gray-color);
            margin-bottom: 25px;
            line-height: 1.7;
            transition: var(--transition);
        }

        .feature-link {
            color: var(--primary-color);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            padding: 8px 16px;
            border-radius: var(--border-radius);
            background: rgba(255, 102, 0, 0.1);
            transition: var(--transition);
        }

        .feature-link:hover {
            gap: 15px;
            color: var(--white);
            background: var(--primary-color);
            transform: translateX(10px);
            padding-right: 25px;
        }

        .feature-link i {
            transition: var(--transition);
        }

        .feature-link:hover i {
            transform: translateX(5px) rotate(90deg);
        }

        /* Text Block Sections */
        .text-block-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--gray-light) 0%, #e0e0e0 100%);
            position: relative;
            overflow: hidden;
        }

        .text-block-section:nth-child(even) {
            background: linear-gradient(135deg, var(--white) 0%, #f0f0f0 100%);
        }

        .text-block-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255, 102, 0, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 51, 102, 0.05) 0%, transparent 20%);
            animation: gradientFloat 15s ease-in-out infinite alternate;
        }

        .text-block-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .text-block-title {
            font-size: 38px;
            color: var(--secondary-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 20px;
            opacity: 0;
            transform: translateX(-40px);
        }

        .text-block-title.animated {
            opacity: 1;
            transform: translateX(0);
            animation: slideInLeft 1s ease-out;
        }

        .text-block-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 120px;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 3px;
            animation: widthGrow 2s ease-out;
        }

        .text {
            background: linear-gradient(145deg, var(--white), #f8f8f8);
            padding: 50px;
            border-radius: var(--border-radius-lg);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0;
            transform: translateY(30px) scale(0.95);
        }

        .text.animated {
            opacity: 1;
            transform: translateY(0) scale(1);
            animation: textAppear 1.5s ease-out;
        }

        .text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
            animation: gradientMove 3s linear infinite;
        }

        .text h3 {
            font-size: 28px;
            color: var(--secondary-color);
            margin-top: 40px;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
            opacity: 0;
            transform: translateX(40px);
        }

        .text h3.animated {
            opacity: 1;
            transform: translateX(0);
            animation: slideInRight 1s ease-out;
        }

        .text h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--primary-color);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .table {
            overflow: hidden;
            margin: 40px 0;
            border-radius: var(--border-radius);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transform-origin: top;
            opacity: 0;
            transform: scaleY(0);
        }

        .table.animated {
            opacity: 1;
            transform: scaleY(1);
            animation: tableAppear 1.2s ease-out;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            background: var(--white);
        }

        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        th {
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
            color: var(--white);
            font-weight: 600;
            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);
            transition: left 0.6s;
        }

        th:hover::after {
            left: 100%;
        }

        tr {
            transition: var(--transition);
            opacity: 0;
            transform: translateX(-20px);
        }

        tr.animated {
            opacity: 1;
            transform: translateX(0);
            animation: rowAppear 0.5s ease-out backwards;
        }

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

        tr:nth-child(even) {
            background: rgba(0, 51, 102, 0.03);
        }

        tr:hover {
            background: rgba(255, 102, 0, 0.1);
            transform: translateX(10px) scale(1.01);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        td:hover {
            background: rgba(255, 102, 0, 0.15);
            transform: scale(1.05);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .styled-list {
            margin: 30px 0 40px;
            padding-left: 30px;
        }

        .styled-list li {
            margin-bottom: 15px;
            padding: 12px 15px;
            position: relative;
            background: rgba(255, 255, 255, 0.7);
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
            transition: var(--transition);
            list-style: none;
            box-shadow: var(--shadow-light);
            opacity: 0;
            transform: translateX(-20px);
        }

        .styled-list li.animated {
            opacity: 1;
            transform: translateX(0);
            animation: slideInLeft 0.6s ease-out backwards;
        }

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

        .styled-list li:hover {
            transform: translateX(15px) scale(1.02);
            background: rgba(255, 102, 0, 0.1);
            border-left-width: 8px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .styled-list li::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary-color);
            box-shadow: 0 0 10px var(--primary-color);
            animation: pulse 2s infinite;
        }

        .styled-list ol li::before {
            background: var(--secondary-color);
            box-shadow: 0 0 10px var(--secondary-color);
        }

        /* Sidebar */
        .sidebar {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .sidebar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.1) 0%, transparent 30%);
            animation: gradientFloat 20s ease-in-out infinite alternate;
        }

        .sidebar-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .widget-title {
            font-size: 26px;
            margin-bottom: 25px;
            color: var(--accent-color);
            position: relative;
            padding-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
        }

        .widget-title.animated {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 1s ease-out;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
            animation: widthPulse 2s ease-in-out infinite;
        }

        .sidebar-links li,
        .sidebar-promos li,
        .sidebar-games li {
            margin-bottom: 15px;
            list-style: none;
            position: relative;
            padding-left: 25px;
            opacity: 0;
            transform: translateX(20px);
        }

        .sidebar-links li.animated,
        .sidebar-promos li.animated,
        .sidebar-games li.animated {
            opacity: 1;
            transform: translateX(0);
            animation: slideInRight 0.6s ease-out backwards;
        }

        .sidebar-links li:nth-child(1) { animation-delay: 0.1s; }
        .sidebar-links li:nth-child(2) { animation-delay: 0.2s; }
        .sidebar-links li:nth-child(3) { animation-delay: 0.3s; }
        .sidebar-links li:nth-child(4) { animation-delay: 0.4s; }
        .sidebar-links li:nth-child(5) { animation-delay: 0.5s; }
        .sidebar-links li:nth-child(6) { animation-delay: 0.6s; }
        .sidebar-links li:nth-child(7) { animation-delay: 0.7s; }

        .sidebar-promos li:nth-child(1) { animation-delay: 0.1s; }
        .sidebar-promos li:nth-child(2) { animation-delay: 0.2s; }
        .sidebar-promos li:nth-child(3) { animation-delay: 0.3s; }
        .sidebar-promos li:nth-child(4) { animation-delay: 0.4s; }

        .sidebar-games li:nth-child(1) { animation-delay: 0.1s; }
        .sidebar-games li:nth-child(2) { animation-delay: 0.2s; }
        .sidebar-games li:nth-child(3) { animation-delay: 0.3s; }
        .sidebar-games li:nth-child(4) { animation-delay: 0.4s; }

        .sidebar-links li::before,
        .sidebar-promos li::before,
        .sidebar-games li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-size: 24px;
            transition: var(--transition);
            animation: arrowBounce 2s ease-in-out infinite;
        }

        .sidebar-links a,
        .sidebar-promos a,
        .sidebar-games a {
            color: rgba(255, 255, 255, 0.9);
            transition: var(--transition);
            display: block;
            padding: 10px 15px;
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar-links a:hover,
        .sidebar-promos a:hover,
        .sidebar-games a:hover {
            color: var(--white);
            padding-left: 25px;
            background: rgba(255, 102, 0, 0.2);
            border-color: var(--primary-color);
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .sidebar-links li:hover::before,
        .sidebar-promos li:hover::before,
        .sidebar-games li:hover::before {
            left: 10px;
            color: var(--accent-color);
            transform: scale(1.5);
        }

        /* Footer */
        .site-footer {
            background: linear-gradient(135deg, var(--dark-color), #0a0a0a);
            color: var(--white);
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
            animation: gradientMove 3s linear infinite;
        }

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

        .footer-logo .logo-animated {
            justify-content: flex-start;
            margin-bottom: 25px;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            font-size: 18px;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
        }

        .footer-tagline.animated {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 40px;
        }

        .footer-title {
            font-size: 20px;
            color: var(--accent-color);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
        }

        .footer-title.animated {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 1s ease-out;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
            animation: widthPulse 2s ease-in-out infinite;
        }

        .footer-list li {
            margin-bottom: 12px;
            list-style: none;
            opacity: 0;
            transform: translateX(20px);
        }

        .footer-list li.animated {
            opacity: 1;
            transform: translateX(0);
            animation: slideInRight 0.6s ease-out backwards;
        }

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

        .footer-list a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            display: block;
            padding: 8px 12px;
            border-radius: var(--border-radius);
            position: relative;
            overflow: hidden;
        }

        .footer-list a::before {
            content: '';
            position: absolute;
            left: -100%;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.2), transparent);
            transition: var(--transition);
        }

        .footer-list a:hover {
            color: var(--white);
            padding-left: 20px;
            background: rgba(255, 102, 0, 0.1);
        }

        .footer-list a:hover::before {
            left: 100%;
        }

        .footer-social .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 25px;
            opacity: 0;
            transform: translateY(20px);
        }

        .footer-social .social-icons.animated {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            font-size: 20px;
        }

        .footer-social a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            transform: scale(0);
            transition: var(--transition);
            z-index: -1;
        }

        .footer-social a:hover {
            transform: translateY(-8px) scale(1.1);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
        }

        .footer-social a:hover::before {
            transform: scale(1);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
        }

        .footer-bottom.animated {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .footer-copyright p {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            line-height: 1.6;
        }

        .payment-icons {
            display: flex;
            gap: 20px;
            font-size: 36px;
            color: rgba(255, 255, 255, 0.6);
            flex-wrap: wrap;
        }

        .payment-icons i {
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            animation: iconFloat 4s ease-in-out infinite;
        }

        .payment-icons i:nth-child(1) { animation-delay: 0s; }
        .payment-icons i:nth-child(2) { animation-delay: 0.2s; }
        .payment-icons i:nth-child(3) { animation-delay: 0.4s; }
        .payment-icons i:nth-child(4) { animation-delay: 0.6s; }
        .payment-icons i:nth-child(5) { animation-delay: 0.8s; }

        .payment-icons i:hover {
            color: var(--primary-color);
            transform: translateY(-10px) scale(1.2);
            filter: drop-shadow(0 5px 15px rgba(255, 102, 0, 0.5));
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            animation: pulse 2s infinite;
            transform-origin: center;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            animation: 
                pulse 2s infinite,
                float 3s ease-in-out infinite;
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 15px 40px rgba(255, 102, 0, 0.6);
        }

        /* Animations */
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

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

        @keyframes glow {
            0% { box-shadow: 0 0 20px rgba(255, 102, 0, 0.3); }
            100% { box-shadow: 0 0 30px rgba(255, 102, 0, 0.6), 0 0 40px rgba(255, 204, 0, 0.3); }
        }

        @keyframes textGlow {
            0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); }
            100% { text-shadow: 2px 2px 8px rgba(255, 102, 0, 0.3), 0 0 20px rgba(255, 204, 0, 0.2); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes pulseSmall {
            0%, 100% { transform: translateY(-2px) scale(1.05); box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3); }
            50% { transform: translateY(-2px) scale(1.08); box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4); }
        }

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

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

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

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

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        @keyframes iconPulse {
            0% { transform: rotateY(0) scale(1); }
            50% { transform: rotateY(180deg) scale(1.2); }
            100% { transform: rotateY(360deg) scale(1.1); }
        }

        @keyframes pulseRing {
            0% { transform: scale(0.8); opacity: 0.8; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        @keyframes gradientShift {
            0% { transform: translateX(-10%) translateY(-10%); }
            100% { transform: translateX(10%) translateY(10%); }
        }

        @keyframes gradientFloat {
            0% { transform: translateX(-5%) translateY(-5%); }
            100% { transform: translateX(5%) translateY(5%); }
        }

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

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

        @keyframes widthPulse {
            0%, 100% { width: 50px; }
            50% { width: 80px; }
        }

        @keyframes widthGrow {
            0% { width: 0; }
            100% { width: 120px; }
        }

        @keyframes underlineWidth {
            0%, 100% { width: 70%; }
            50% { width: 90%; }
        }

        @keyframes textShadow {
            0% { text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2); }
            100% { text-shadow: 0 2px 20px rgba(255, 204, 0, 0.4), 0 4px 30px rgba(255, 102, 0, 0.3); }
        }

        @keyframes arrowBounce {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(5px); }
        }

        @keyframes tableAppear {
            0% { transform: scaleY(0); opacity: 0; }
            100% { transform: scaleY(1); opacity: 1; }
        }

        @keyframes rowAppear {
            0% { opacity: 0; transform: translateX(-20px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes textAppear {
            0% { opacity: 0; transform: translateY(30px) scale(0.95); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* FIXED RESPONSIVE STYLES */
        @media (max-width: 1400px) {
            .nav-link {
                font-size: 12px;
                padding: 8px 12px;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
            .logo-text span {
                font-size: 12px;
            }
            
            .header-cta .btn {
                font-size: 12px;
                padding: 8px 14px;
            }
        }

        @media (max-width: 1200px) {
            .nav-link {
                font-size: 11px;
                padding: 7px 10px;
            }
            
            .logo-text {
                font-size: 16px;
            }
            
            .logo-circle {
                width: 50px;
                height: 50px;
            }
            
            .header-cta .btn {
                font-size: 11px;
                padding: 7px 12px;
            }
        }

        @media (max-width: 1100px) {
            /* Switch to mobile menu earlier */
            .mobile-menu-toggle {
                display: flex;
            }
            
            .main-nav {
                display: none;
            }
            
            .logo-container {
                flex: 1;
            }
            
            .header-cta {
                display: flex;
                align-items: center;
                gap: 15px;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 48px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }
            
            .hero-description {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .payment-icons {
                justify-content: center;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .header-cta .btn {
                padding: 8px 15px;
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .text {
                padding: 30px 20px;
            }
            
            .feature-card, .text-block-wrapper {
                padding: 25px 20px;
            }
            
            .hero-section {
                padding: 80px 0;
            }
            
            .features-section, .text-block-section {
                padding: 60px 0;
            }
            
            .sidebar {
                padding: 60px 0;
            }
            
            .site-footer {
                padding: 60px 0 30px;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .hero-description {
                font-size: 16px;
                margin-bottom: 30px;
            }
            
            .btn-large {
                padding: 15px 25px;
                font-size: 16px;
            }
            
            /* Header adjustments for mobile */
            .logo-text {
                font-size: 16px;
            }
            
            .logo-text span {
                font-size: 11px;
            }
            
            .logo-circle {
                width: 45px;
                height: 45px;
            }
            
            .logo-dice-1, .logo-dice-2, .logo-dice-3 {
                font-size: 16px;
            }
            
            .header-cta .btn {
                padding: 6px 12px;
                font-size: 11px;
            }
            
            /* Mobile menu adjustments */
            .mobile-menu-container {
                width: 100%;
                max-width: 100%;
            }
            
            .mobile-nav-link {
                font-size: 14px;
                padding: 14px 18px;
            }
        }

        @media (max-width: 400px) {
            .logo-text {
                font-size: 14px;
            }
            
            .logo-text span {
                font-size: 10px;
            }
            
            .logo-circle {
                width: 40px;
                height: 40px;
            }
            
            .header-cta .btn {
                font-size: 10px;
                padding: 5px 10px;
            }
            
            .mobile-menu-toggle {
                width: 35px;
                height: 35px;
            }
            
            .hamburger-line {
                width: 25px;
            }
        }