:root {
    --bg-dark: #050505;
    --surface: rgba(25, 25, 25, 0.6);
    --border: rgba(255, 255, 255, 0.08);
    --primary: #0088ff;
    --primary-glow: rgba(0, 136, 255, 0.4);

    --premium: #0088ff; 
    --premium-glow: rgba(0, 136, 255, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.glow-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--primary-glow) 0%, transparent 20%);
    z-index: -1;
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}


.glass-card {
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--font-heading);
}


.gradient-text-premium {
    background: linear-gradient(90deg, #fff, var(--premium));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--font-heading);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}


.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.social-actions {
    display: flex;
    gap: 10px;
}

.social-btn {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.discord { background: #5865F2; color: white; }
.youtube { background: #FF0000; color: white; }
.social-btn:hover { transform: translateY(-2px); filter: brightness(1.2); }

.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.video-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--primary-glow);
    border-color: var(--primary);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    

    transform: scale(1);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, border-color 0.4s ease;
   

    transition: all 0.24s ease-in-out !important;
}

.product-card:hover {
    transform: scale(1.05) !important;
    
    border-color: var(--primary);
    box-shadow: 0 15px 40px var(--premium-glow);
    
    z-index: 10;

}


.pay-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 20px !important;
    width: 100% !important;
    margin: 40px 0 !important;
}

.pay-card {
    transform: scale(1);
    transition: transform 0.14s ease-out, box-shadow 0.14s ease-out !important;
}

.pay-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 15px 40px var(--primary-glow) !important;
    z-index: 100 !important;
    transition: transform 0.24s ease-in, box-shadow 0.24s ease-in !important;
}

.product-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.lifetime {
    font-size: 0.8rem;
    background: rgba(0, 255, 0, 0.1);
    color: #00ff66;
    padding: 3px 8px;
    border-radius: 4px;
    vertical-align: middle;
}

.upgrade-badge {
    font-size: 0.8rem;
    background: rgba(0, 136, 255, 0.15);
    color: #00d4ff; 
    padding: 3px 10px;
    border-radius: 4px;
    vertical-align: middle;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(0, 136, 255, 0.3);
    display: inline-block;
}

.features {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    flex-grow: 1;
}


.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}
.soon { background: #444; color: #aaa; }

.premium-badge { background: linear-gradient(45deg, var(--premium), var(--primary)); color: white; box-shadow: 0 0 15px var(--premium-glow); }
.premium-badge2 { background: #17a33c; color: white; box-shadow: 0 0 15px rgba(102, 255, 51, 0.4); }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-primary {
    background: var(--premium);
    color: #fff;
    box-shadow: 0 0 20px var(--premium-glow);
}

.btn-primary:hover {
    background: #fff;
    color: var(--premium);
    box-shadow: 0 0 30px var(--premium-glow);
}

.btn-premium {
    background: var(--premium);
    color: #fff;
    box-shadow: 0 0 20px var(--premium-glow);
}

.btn-premium:hover {
    background: #fff;
    color: var(--premium);
    box-shadow: 0 0 30px var(--premium-glow);
}

.btn-disabled {
    background: #2a2a2a;
    color: #666;
    cursor: not-allowed;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    padding: 40px 30px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
    font-family: var(--font-heading);
}

.step-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.about-card {
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.glass-footer {
    border-top: 1px solid var(--border);
    padding: 30px 0;
    margin-top: 50px;
}

.text-center {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    .about-card { padding: 30px 20px; }
}


.software-container {
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border);
}

.software-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.soft-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--text-main);
    padding: 10px 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    letter-spacing: 1px;
}

.soft-btn.active, .soft-btn:hover {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    color: white;
}

.software-screen {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.software-screen img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.btn-premium-gold {
    border: 1px solid #fffd54 !important;
    color: #fffd54 !important;
}

.btn-premium-gold:hover, 
.btn-premium-gold.active {
    background: #fffd54 !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255, 253, 84, 0.5) !important;
}

@keyframes smoothWaveAndColor {
    0%, 100% { 
        transform: translate3d(0, 0, 0); 
        color: #248bb0;
    }
    50% { 
        transform: translate3d(0, -8px, 0); 
        color: #00f0ff;
    }
}

.wave-text span {
    display: inline-block;
    position: relative;
    animation: smoothWaveAndColor 3s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}