:root {
     --bg-deep: #020205;
     --accent: #ffffff;
     --accent-dim: rgba(255, 255, 255, 0.05);
     --accent-glow: rgba(255, 255, 255, 0.8);
     --glass-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(20, 20, 25, 0.7) 100%);
     --glass-border: rgba(255, 255, 255, 0.15);
     --text-white: #ffffff;
     --text-gray: #9ca3af;
     --transition-premium: cubic-bezier(0.23, 1, 0.32, 1);
     --transition-mobile: cubic-bezier(0.77, 0, 0.175, 1);
}
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     cursor: none;
}
 html {
     scroll-behavior: smooth;
}
 body {
     background-color: var(--bg-deep);
     color: var(--text-white);
     font-family: 'Outfit', sans-serif;
     overflow-x: hidden;
     width: 100%;
     background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 30%), radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 30%);
}
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #000;
     z-index: 99999;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: opacity 0.8s ease-out, visibility 0.8s;
}
 .loader-content {
     text-align: center;
     animation: fadeInLoader 1s ease-out;
}
 .loader-logo {
     height: 80px;
     margin-bottom: 20px;
     animation: pulseLogo 2s infinite ease-in-out;
}
 .loader-bar {
     width: 200px;
     height: 2px;
     background: rgba(255,255,255,0.1);
     margin: 0 auto;
     position: relative;
     overflow: hidden;
}
 .loader-progress {
     position: absolute;
     left: 0;
     top: 0;
     height: 100%;
     width: 0%;
     background: #fff;
     box-shadow: 0 0 10px #fff;
     animation: loadProgress 2s cubic-bezier(0.83, 0, 0.17, 1) forwards;
}
 .noise-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 9000;
     opacity: 0.03;
     background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJnoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2cpIiBvcGFjaXR5PSIwLjUiLz48L3N2Zz4=');
}
 .status-ticker-wrap {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 36px;
     background: rgba(2, 2, 5, 0.95);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     z-index: 99;
     display: flex;
     align-items: center;
     overflow: hidden;
     white-space: nowrap;
     backdrop-filter: blur(10px);
     mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
     -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
 .ticker-track {
     display: flex;
     width: max-content;
     animation: scrollTicker 40s linear infinite;
}
 .ticker-item {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 0.75rem;
     color: var(--text-gray);
     text-transform: uppercase;
     letter-spacing: 0.15em;
     padding: 0 40px;
     display: flex;
     align-items: center;
     gap: 10px;
     border-right: 1px solid rgba(255,255,255,0.1);
}
 .status-dot {
     width: 6px;
     height: 6px;
     background: #00ff88;
     border-radius: 50%;
     box-shadow: 0 0 8px #00ff88;
}
 @keyframes scrollTicker {
     0% {
         transform: translateX(0);
    }
     100% {
         transform: translateX(-50%);
    }
}
 .grid-background {
     position: fixed;
     inset: 0;
     z-index: -2;
     background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
     background-size: 50px 50px;
     pointer-events: none;
}
 .grid-mover {
     position: fixed;
     inset: 0;
     z-index: -1;
     background-image: linear-gradient(var(--accent) 1px, transparent 1px), linear-gradient(90deg, var(--accent) 1px, transparent 1px);
     background-size: 50px 50px;
     pointer-events: none;
     -webkit-mask-image: radial-gradient(circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
     mask-image: radial-gradient(circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
     transition: -webkit-mask-image 0.1s ease-out;
     transition: mask-image 0.1s ease-out;
     opacity: 0.4;
}
 .floating-shape {
     position: absolute;
     border: 1px solid rgba(255, 255, 255, 0.03);
     background: rgba(255, 255, 255, 0.01);
     z-index: -1;
     filter: blur(1px);
}
 .shape-1 {
     width: 250px;
     height: 250px;
     top: 20%;
     left: 5%;
     border-radius: 50%;
     animation: float-shape 20s infinite alternate ease-in-out;
}
 .shape-2 {
     width: 180px;
     height: 180px;
     top: 60%;
     right: 10%;
     transform: rotate(45deg);
     animation: float-shape 15s infinite alternate-reverse ease-in-out;
}
 @keyframes float-shape {
     0% {
         transform: translate(0, 0);
    }
     100% {
         transform: translate(30px, 60px);
    }
}
 .ambient-light {
     position: fixed;
     width: 550px;
     height: 550px;
     background: radial-gradient(circle, rgba(40, 40, 50, 0.4) 0%, rgba(0,0,0,0) 70%);
     border-radius: 50%;
     filter: blur(110px);
     z-index: -3;
     animation: float-light 25s infinite alternate;
}
 .light-1 {
     top: -10%;
     left: -10%;
}
 .light-2 {
     bottom: -10%;
     right: -10%;
     animation-delay: -12s;
}
 @keyframes float-light {
     0% {
         transform: translate(0, 0) scale(1);
    }
     100% {
         transform: translate(50px, 30px) scale(1.1);
    }
}
 .cursor-dot, .cursor-outline {
     position: fixed;
     top: 0;
     left: 0;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 99999;
     pointer-events: none;
}
 .cursor-dot {
     width: 6px;
     height: 6px;
     background: var(--accent);
     box-shadow: 0 0 15px var(--accent-glow);
}
 .cursor-outline {
     width: 35px;
     height: 35px;
     border: 1px solid var(--accent);
     transition: width 0.2s, height 0.2s, background-color 0.2s, transform 0.1s;
     opacity: 0.6;
}
 .cursor-outline.hovered {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.1);
     border-color: transparent;
     backdrop-filter: blur(2px);
}
 h1, h2, h3 {
     font-family: 'Space Grotesk', sans-serif;
     text-transform: uppercase;
     letter-spacing: -0.02em;
}
 .container {
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 30px;
     position: relative;
}
 .section {
     padding: 120px 0;
     position: relative;
}
 .glass {
     background: var(--glass-bg);
     backdrop-filter: blur(40px);
     -webkit-backdrop-filter: blur(40px);
     border: 1px solid var(--glass-border);
     border-top: 1px solid rgba(255,255, 255, 0.25);
     border-left: 1px solid rgba(255,255, 255, 0.15);
     border-radius: 22px;
     position: relative;
     overflow: hidden;
     transition: transform 0.1s, box-shadow 0.5s var(--transition-premium), border-color 0.5s;
     transform-style: preserve-3d;
     will-change: transform;
}
 .glass::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
     opacity: 0.6;
     z-index: 2;
}
 .glass::before {
     content: "";
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 50%);
     opacity: 0;
     transition: opacity 0.5s;
     pointer-events: none;
     z-index: 1;
}
 .glass:hover::before {
     opacity: 1;
}
 .glass:hover {
     border-color: rgba(255, 255, 255, 0.3);
}
 nav {
     position: fixed;
     top: 36px;
     width: 100%;
     padding: 25px 0;
     z-index: 100;
     background: rgba(2,2,5,0.85);
     backdrop-filter: blur(25px);
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
     transition: padding 0.3s;
}
 .nav-inner {
     display: flex;
     justify-content: center;
    /* Centers the links */
     align-items: center;
     position: relative;
    /* Context for absolute children */
}
 .logo {
     position: absolute;
     left: 30px;
    /* All the way to the left */
     z-index: 103;
     height: 45px;
     width: auto;
     display: flex;
     align-items: center;
}
 .logo img {
     height: 100%;
     width: auto;
     filter: drop-shadow(0 0 20px var(--accent-glow));
     transition: 0.4s;
}
 .logo:hover img {
     filter: drop-shadow(0 0 35px var(--accent));
     transform: scale(1.05);
}
 .nav-links {
     display: flex;
     gap: 40px;
     align-items: center;
     z-index: 102;
}
 .nav-links a {
     color: var(--text-gray);
     text-decoration: none;
     font-size: 0.8rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.15em;
     transition: 0.4s;
     position: relative;
}
 .nav-links a:hover {
     color: var(--accent);
     text-shadow: 0 0 20px var(--accent-glow);
}
 .nav-links a::before {
     content: '';
     position: absolute;
     bottom: -7px;
     left: 0;
     width: 0%;
     height: 1px;
     background: var(--accent);
     box-shadow: 0 0 10px var(--accent);
     transition: 0.4s;
}
 .nav-links a:hover::before {
     width: 100%;
}
/* New Legal Buttons Styling */
 .nav-legal-actions {
     display: flex;
     gap: 15px;
     margin-left: 0;
    /* Removed margin, using positioning instead */
     position: absolute;
     right: -155px;
    /* All the way to the right */
     z-index: 103;
}
 .nav-legal-btn {
     text-decoration: none;
     color: var(--text-white);
     font-family: 'Space Grotesk', sans-serif;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     font-size: 0.75rem;
     padding: 8px 20px;
     border: 1px solid rgba(255, 255, 255, 0.4);
     position: relative;
     overflow: hidden;
     transition: color 0.3s;
     border-radius: 4px;
     backdrop-filter: blur(5px);
}
 .nav-legal-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--accent);
     transform: scaleX(0);
     transform-origin: right;
     transition: transform 0.5s var(--transition-premium);
     z-index: -1;
}
 .nav-legal-btn:hover {
     color: black;
     border-color: var(--accent);
     box-shadow: 0 0 20px rgba(255,255,255,0.3);
}
 .nav-legal-btn:hover::before {
     transform: scaleX(1);
     transform-origin: left;
}
 .hamburger {
     display: none;
     flex-direction: column;
     justify-content: space-between;
     width: 32px;
     height: 24px;
     cursor: none;
     z-index: 102;
     background: transparent;
     border: none;
     padding: 0;
}
 .hamburger .bar {
     width: 100%;
     height: 2px;
     background-color: var(--text-white);
     border-radius: 2px;
     transition: all 0.4s var(--transition-mobile);
     box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
 .hamburger.active .bar:nth-child(1) {
     transform: translateY(10px) rotate(45deg);
     background-color: var(--accent);
     box-shadow: 0 0 15px var(--accent);
}
 .hamburger.active .bar:nth-child(2) {
     opacity: 0;
     transform: translateX(-20px);
}
 .hamburger.active .bar:nth-child(3) {
     transform: translateY(-11px) rotate(-45deg);
     background-color: var(--accent);
     box-shadow: 0 0 15px var(--accent);
}
 .mobile-menu-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(2, 2, 5, 0.95);
     backdrop-filter: blur(40px);
     -webkit-backdrop-filter: blur(40px);
     z-index: 101;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-20px);
     transition: all 0.6s var(--transition-mobile);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
 .mobile-menu-overlay.active {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .mobile-nav-links {
     display: flex;
     flex-direction: column;
     gap: 40px;
     text-align: center;
}
 .mobile-nav-links a {
     color: var(--text-white);
     text-decoration: none;
     font-family: 'Space Grotesk', sans-serif;
     font-size: 2.5rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: -0.02em;
     opacity: 0;
     transform: translateY(30px);
     transition: color 0.4s, text-shadow 0.4s;
}
 .mobile-nav-links a:hover {
     color: var(--accent);
     text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}
 .mobile-menu-overlay.active .mobile-nav-links a {
     opacity: 1;
     transform: translateY(0);
}
 .mobile-menu-overlay.active .mobile-nav-links a:nth-child(1) {
     transition: all 0.6s var(--transition-mobile) 0.2s;
}
 .mobile-menu-overlay.active .mobile-nav-links a:nth-child(2) {
     transition: all 0.6s var(--transition-mobile) 0.3s;
}
 .mobile-menu-overlay.active .mobile-nav-links a:nth-child(3) {
     transition: all 0.6s var(--transition-mobile) 0.4s;
}
 .mobile-menu-overlay.active .mobile-nav-links a:nth-child(4) {
     transition: all 0.6s var(--transition-mobile) 0.5s;
}
 .mobile-menu-overlay.active .mobile-nav-links a:nth-child(5) {
     transition: all 0.6s var(--transition-mobile) 0.6s;
}
 .mobile-menu-overlay.active .mobile-nav-links a:nth-child(6) {
     transition: all 0.6s var(--transition-mobile) 0.7s;
}
 #hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding-top: 180px;
     position: relative;
}
 .hero-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 70px;
     align-items: center;
     position: relative;
     z-index: 1;
}
 .hero-text h1 {
     font-size: 5.5rem;
     line-height: 0.9;
     margin-bottom: 25px;
     background: linear-gradient(180deg, #fff 10%, #777 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.25));
}
 .hero-text p {
     font-size: 1.2rem;
     color: var(--text-gray);
     margin-bottom: 45px;
     max-width: 550px;
     line-height: 1.7;
     font-weight: 300;
     letter-spacing: 0.01em;
}
 .cta-btn {
     padding: 20px 50px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.3);
     color: white;
     font-family: 'Space Grotesk', sans-serif;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     font-size: 0.85rem;
     transition: 0.4s;
     text-decoration: none;
     position: relative;
     overflow: hidden;
     backdrop-filter: blur(15px);
     box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
     display: inline-block;
}
 .cta-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--accent);
     transform: scaleX(0);
     transform-origin: right;
     transition: transform 0.5s var(--transition-premium);
     z-index: -1;
}
 .cta-btn:hover::before {
     transform: scaleX(1);
     transform-origin: left;
}
 .cta-btn:hover {
     color: black;
     border-color: var(--accent);
     box-shadow: 0 0 50px var(--accent-glow);
}
 .hero-visual-container {
     perspective: 2000px;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .hero-img-3d {
     width: 100%;
     max-width: 600px;
     border-radius: 20px;
     animation: float-hero 5s ease-in-out infinite;
     transform-style: preserve-3d;
     border: 1px solid rgba(255, 255, 255, 0.5);
     box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 150px rgba(255, 255, 255, 0.2), inset 0 0 60px rgba(255,255, 255, 0.05);
}
 @keyframes float-hero {
     0% {
         transform: translateY(0) rotateX(2deg) rotateY(-2deg) scale(1);
    }
     50% {
         transform: translateY(-30px) rotateX(-2deg) rotateY(2deg) scale(1.02);
    }
     100% {
         transform: translateY(0) rotateX(2deg) rotateY(-2deg) scale(1);
    }
}
 #yt-section {
     text-align: center;
     padding: 80px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
 .yt-container {
     max-width: 950px;
     margin: 45px auto 0;
     position: relative;
     padding: 10px;
     background: rgba(255, 255, 255, 0.04);
     border-radius: 18px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     box-shadow: 0 50px 110px -20px rgba(0,0,0,0.9);
}
 .yt-container iframe {
     width: 100%;
     border-radius: 12px;
     display: block;
     box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
     gap: 25px;
     margin-top: 60px;
}
 .feature-card {
     padding: 40px;
     display: flex;
     flex-direction: column;
     gap: 20px;
     align-items: flex-start;
}
 .feature-icon-box {
     width: 65px;
     height: 65px;
     border-radius: 15px;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.6rem;
     color: var(--accent);
     transition: 0.4s;
     box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
 .feature-card:hover .feature-icon-box {
     background: var(--accent);
     color: black;
     transform: scale(1.1) rotate(5deg);
     box-shadow: 0 0 40px var(--accent-glow);
     border-color: transparent;
}
 #showcase-area {
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
 .main-video-wrapper {
     max-width: 750px;
     margin: 0 auto 70px;
     border-radius: 22px;
     overflow: hidden;
     border: 1px solid var(--glass-border);
     box-shadow: 0 35px 75px -20px rgba(0,0,0,0.9), 0 0 25px rgba(255,255,255,0.05);
     position: relative;
     background: black;
     transform: translateZ(0);
}
 .main-video-wrapper video {
     width: 100%;
     display: block;
     max-height: 40vh;
     object-fit: cover;
}
 .custom-controls {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
     padding: 22px 35px;
     display: flex;
     align-items: center;
     gap: 22px;
     opacity: 0;
     transition: opacity 0.3s;
     z-index: 10;
}
 .main-video-wrapper:hover .custom-controls {
     opacity: 1;
}
 .control-btn {
     background: none;
     border: none;
     color: var(--accent);
     font-size: 1.5rem;
     cursor: none;
     transition: 0.2s;
     display: flex;
     align-items: center;
}
 .control-btn:hover {
     color: white;
     text-shadow: 0 0 20px var(--accent);
}
 .progress-bar-container {
     flex-grow: 1;
     height: 4px;
     background: rgba(255,255,255,0.15);
     border-radius: 2px;
     cursor: none;
     position: relative;
}
 .progress-fill {
     height: 100%;
     width: 0%;
     background: var(--accent);
     border-radius: 2px;
     box-shadow: 0 0 15px var(--accent);
}
 .gallery-scroller {
     position: relative;
     overflow: hidden;
     padding: 70px 0;
}
 .gallery-track {
     display: flex;
     gap: 35px;
     padding: 0;
     transition: transform 0.6s var(--transition-premium);
     align-items: center;
}
 .gallery-item {
     min-width: 450px;
     height: auto;
     border-radius: 16px;
     position: relative;
     transition: all 0.6s var(--transition-premium);
     filter: grayscale(100%) brightness(0.3) blur(2px);
     transform: scale(0.85);
     border: 1px solid transparent;
     overflow: hidden;
     background: #000;
     cursor: none;
}
 .gallery-item img {
     width: 100%;
     height: auto;
     display: block;
     object-fit: contain;
}
 .gallery-item.active {
     filter: grayscale(0%) brightness(1) blur(0);
     transform: scale(1.05);
     border: 1px solid rgba(255, 255, 255, 0.5);
     box-shadow: 0 15px 45px rgba(0,0,0,0.8), 0 0 35px rgba(255, 255, 255, 0.2);
     z-index: 10;
}
 .gallery-nav {
     display: flex;
     justify-content: center;
     gap: 35px;
     margin-top: 45px;
}
 .g-nav-btn {
     width: 55px;
     height: 55px;
     border-radius: 50%;
     background: rgba(20, 20, 25, 0.6);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: var(--accent);
     font-size: 1.15rem;
     transition: 0.3s;
}
 .g-nav-btn:hover {
     background: var(--accent);
     color: black;
     box-shadow: 0 0 30px var(--accent-glow);
     transform: scale(1.15);
}
 #pricing {
     text-align: center;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
 #pricing h2 {
     font-size: 2.2rem;
     margin-bottom: 60px;
}
 .pricing-wrapper {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 25px;
}
 .price-card {
     width: 270px;
     padding: 45px 25px;
     display: flex;
     flex-direction: column;
     align-items: center;
     background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
     border-top: 1px solid rgba(255, 255, 255, 0.15);
}
 .price-icon-circle {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     font-size: 1.9rem;
     color: var(--accent);
     transition: 0.4s;
     box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}
 .price-icon-circle svg {
     width: 40px;
     height: 40px;
     fill: white;
     transition: 0.3s;
}
 .price-card:hover .price-icon-circle {
     transform: translateY(-8px) rotate(-10deg);
     background: var(--accent);
     color: black;
     box-shadow: 0 0 50px var(--accent-glow);
     border-color: var(--accent);
}
 .price-card:hover .price-icon-circle svg, .price-card:hover .price-icon-circle path {
     fill: black !important;
}
 .price-card h3 {
     font-size: 1.1rem;
     margin-bottom: 5px;
     color: white;
     letter-spacing: 0.05em;
}
 .price-tag {
     font-size: 0.9rem;
     color: var(--text-gray);
     margin-bottom: 22px;
     font-family: 'Space Grotesk', sans-serif;
     font-weight: 600;
     letter-spacing: 0.05em;
}
 .p-features {
     list-style: none;
     width: 100%;
     margin-bottom: 35px;
     text-align: left;
}
 .p-features li {
     padding: 12px 0;
     border-bottom: 1px solid rgba(255,255,255,0.05);
     color: var(--text-gray);
     font-size: 0.9rem;
     display: flex;
     align-items: center;
     gap: 10px;
}
 .p-features i {
     color: var(--accent);
     font-size: 0.8rem;
}
 .buy-btn {
     width: 100%;
     padding: 16px;
     background: transparent;
     border: 1px solid rgba(255,255,255,0.2);
     color: white;
     font-family: 'Space Grotesk', sans-serif;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     font-size: 0.85rem;
     margin-top: auto;
     transition: 0.3s;
}
 .buy-btn:hover {
     background: var(--accent);
     color: black;
     border-color: var(--accent);
     box-shadow: 0 15px 40px -10px var(--accent-glow);
}
 #qa {
     padding-bottom: 120px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
 .qa-wrapper {
     max-width: 750px;
     margin: 0 auto;
}
 .qa-item {
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     margin-bottom: 10px;
     transition: border-color 0.3s;
}
 .qa-item:hover {
     border-color: rgba(255, 255, 255, 0.3);
}
 .qa-header {
     width: 100%;
     text-align: left;
     background: none;
     border: none;
     padding: 30px 10px;
     color: white;
     font-family: 'Outfit', sans-serif;
     font-size: 1.25rem;
     font-weight: 500;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: 0.4s;
}
 .qa-header:hover {
     padding-left: 20px;
     color: var(--accent);
}
 .qa-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.6s var(--transition-premium);
     color: #b0b0b0;
     font-family: 'Outfit', sans-serif;
     font-size: 1.05rem;
     line-height: 1.8;
     padding: 0 10px;
}
 .qa-content p {
     padding-bottom: 30px;
}
 .qa-toggle {
     font-size: 1.9rem;
     color: var(--accent);
     opacity: 0.5;
     transition: 0.4s;
}
 .qa-header.active .qa-toggle {
     color: white;
     transform: rotate(45deg);
     opacity: 1;
     text-shadow: 0 0 15px var(--accent);
}
 .qa-header.active {
     color: white;
}
 .qa-content a {
     color: var(--accent);
     text-decoration: underline;
     text-underline-offset: 4px;
}
 .modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0,0,0,0.9);
     backdrop-filter: blur(30px);
     -webkit-backdrop-filter: blur(30px);
     z-index: 20000;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     pointer-events: none;
     transition: 0.4s;
     padding: 20px;
}
 .modal.active {
     opacity: 1;
     pointer-events: all;
}
 .modal-img-container img {
     max-width: 90%;
     max-height: 90vh;
     box-shadow: 0 0 200px rgba(0,0,0,1);
     transform: scale(0.95);
     transition: 0.4s;
     border-radius: 4px;
}
 .modal.active .modal-img-container img {
     transform: scale(1);
}
 .payment-modal-content {
     width: 100%;
     max-width: 550px;
     background: var(--glass-bg);
     backdrop-filter: blur(40px);
     -webkit-backdrop-filter: blur(40px);
     border: 1px solid var(--glass-border);
     border-top: 1px solid rgba(255,255, 255, 0.25);
     border-left: 1px solid rgba(255,255, 255, 0.15);
     border-radius: 22px;
     padding: 40px;
     position: relative;
     text-align: center;
     transform: translateY(20px);
     transition: transform 0.4s;
     box-shadow: 0 50px 100px -20px rgba(0,0,0,1);
}
 .modal.active .payment-modal-content {
     transform: translateY(0);
}
 .close-modal {
     position: absolute;
     top: 20px;
     right: 20px;
     background: transparent;
     border: none;
     color: var(--text-gray);
     font-size: 1.5rem;
     transition: 0.3s;
     cursor: none;
}
 .close-modal:hover {
     color: white;
     transform: rotate(90deg);
     text-shadow: 0 0 10px white;
}
 .pay-title {
     font-size: 1.5rem;
     margin-bottom: 10px;
     font-family: 'Space Grotesk', sans-serif;
     color: white;
}
 .pay-desc {
     color: var(--text-gray);
     font-size: 0.95rem;
     margin-bottom: 25px;
     line-height: 1.6;
}
 .crypto-container {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     padding: 15px;
     margin-bottom: 25px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 15px;
     transition: 0.3s;
}
 .crypto-container:hover {
     border-color: rgba(255, 255, 255, 0.3);
     background: rgba(255, 255, 255, 0.05);
}
 .crypto-address {
     font-family: 'Space Grotesk', sans-serif;
     color: var(--text-white);
     font-size: 0.9rem;
     word-break: break-all;
     text-align: left;
}
 .crypto-icon {
     font-size: 1.8rem;
     color: var(--accent);
     min-width: 30px;
}
 .copy-feedback {
     position: absolute;
     top: -30px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--accent);
     color: black;
     font-size: 0.75rem;
     padding: 4px 10px;
     border-radius: 4px;
     opacity: 0;
     transition: 0.3s;
     pointer-events: none;
     font-weight: 600;
}
 .copy-feedback.show {
     opacity: 1;
     top: -40px;
}
 .global-instruction {
     margin-top: 30px;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.85rem;
     color: #777;
     line-height: 1.6;
}
 .global-instruction a {
     color: var(--accent);
     text-decoration: none;
     border-bottom: 1px solid rgba(255,255,255,0.2);
     transition: 0.3s;
}
 .global-instruction a:hover {
     color: white;
     border-color: white;
}
 .discord-link-btn {
     display: inline-block;
     margin-top: 20px;
     padding: 12px 30px;
     background: #5865F2;
     color: white;
     text-decoration: none;
     border-radius: 8px;
     font-weight: 600;
     font-family: 'Space Grotesk', sans-serif;
     transition: 0.3s;
}
 .discord-link-btn:hover {
     background: #4752c4;
     box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}
 .pay-notice {
     margin-top: 15px;
     font-size: 0.8rem;
     color: #666;
     font-style: italic;
}
 footer {
     text-align: center;
     padding: 75px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     font-size: 0.8rem;
     color: #444;
     text-transform: uppercase;
     letter-spacing: 0.2em;
}
 .credit {
     margin-top: 18px;
     font-family: 'Space Grotesk', sans-serif;
     opacity: 0.3;
     font-weight: 700;
}
 @keyframes fadeInLoader {
     0% {
         opacity: 0;
         transform: translateY(20px);
    }
     100% {
         opacity: 1;
         transform: translateY(0);
    }
}
 @keyframes loadProgress {
     0% {
         width: 0%;
    }
     100% {
         width: 100%;
    }
}
 @keyframes pulseLogo {
     0%, 100% {
         opacity: 1;
    }
     50% {
         opacity: 0.7;
    }
}
 @media (max-width: 1000px) {
     .hero-grid {
         grid-template-columns: 1fr;
         text-align: center;
    }
     .hero-text h1 {
         font-size: 4rem;
    }
     .hero-text p {
         margin: 0 auto 40px;
    }
     .pricing-wrapper {
         flex-direction: column;
         align-items: center;
    }
     .price-card {
         width: 100%;
         max-width: 400px;
    }
}
 @media (max-width: 768px) {
     .container {
         padding: 0 20px;
    }
    /* Reset Nav for Mobile */
     .nav-inner {
         justify-content: space-between;
    }
     .logo {
         position: static;
         left: auto;
    }
     .nav-links {
         display: none;
    }
     .nav-legal-actions {
         display: none;
    }
     .hamburger {
         display: flex;
    }
     .hero-grid {
         gap: 40px;
    }
     .hero-text h1 {
         font-size: 3.5rem;
    }
     .hero-text p {
         font-size: 1.1rem;
    }
     .cta-btn {
         width: 100%;
    }
     .features-grid {
         grid-template-columns: 1fr;
    }
     .pricing-wrapper {
         display: flex;
         flex-direction: column;
         gap: 40px;
         align-items: center;
    }
     .price-card {
         width: 100%;
         max-width: 100%;
    }
     .qa-wrapper {
         max-width: 100%;
    }
     .gallery-item {
         min-width: 80vw;
    }
     .gallery-track {
         padding: 0;
         justify-content: flex-start;
    }
     .gallery-scroller {
         padding: 40px 0;
    }
     .gallery-nav {
         margin-top: 30px;
    }
}
