@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Space+Grotesk:wght:400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Animated star background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 20% 30%, white, transparent),
        radial-gradient(1px 1px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(1px 1px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 79% 90%, white, transparent);
    background-size: 300px 300px;
    animation: stars 120s linear infinite;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-300px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    position: relative;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.red-dot {
    color: #ff3232;
    font-size: 20px;
}

.brand-text {
    color: #ffffff;
}

.nav-link {
    color: #00b8ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-catalog {
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a0a 50%, #0a1a0a 100%);
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.logo {
    max-width: 250px;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 40px rgba(255, 50, 50, 0.6)) 
            drop-shadow(0 0 20px rgba(50, 255, 50, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.glitch {
    font-size: 72px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 8px;
    background: linear-gradient(45deg, #ff3232, #ffeb3b, #4cff4c, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.subtitle {
    text-align: center;
    font-size: 24px;
    color: #b4b4b4;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(45deg, #ff3232, #ff5050);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 50, 50, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 50, 50, 0.6);
    background: linear-gradient(45deg, #ff5050, #ff3232);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #4cff4c;
    color: #4cff4c;
}

.btn-secondary:hover {
    background: #4cff4c;
    color: #0a0a0f;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 255, 76, 0.4);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #0f0f15;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: 4px;
    background: linear-gradient(45deg, #ff3232, #ffeb3b, #4cff4c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, #1a1a24 0%, #141418 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card.active:hover {
    transform: translateY(-10px);
    border-color: #ff3232;
    box-shadow: 0 10px 40px rgba(255, 50, 50, 0.4),
                0 0 60px rgba(76, 255, 76, 0.2);
}

.product-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 235, 59, 0.5));
}

.product-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #ffffff;
}

.product-card p {
    color: #b4b4b4;
    margin-bottom: 20px;
}

.status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.status.available {
    background: rgba(76, 255, 76, 0.2);
    color: #4cff4c;
    border: 1px solid #4cff4c;
    animation: pulse-green 2s ease infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 5px rgba(76, 255, 76, 0.5); }
    50% { box-shadow: 0 0 20px rgba(76, 255, 76, 0.8); }
}

.status.soon {
    background: rgba(255, 235, 59, 0.2);
    color: #ffeb3b;
    border: 1px solid #ffeb3b;
}

/* Product Details */
.product-details {
    padding: 80px 0;
    background: #0a0a0f;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4cff4c;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.3s;
}

.back-button:hover {
    color: #ffeb3b;
    transform: translateX(-5px);
}

.product-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: 4px;
    background: linear-gradient(45deg, #ff3232, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Menu Container (like in cheat) */
.menu-container {
    background: #1a1a24;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(255, 50, 50, 0.2);
    margin-bottom: 80px;
    border: 1px solid #2a2a2a;
}

.menu-header {
    background: #0f0f15;
    padding: 15px;
    border-bottom: 2px solid #2a2a2a;
}

.menu-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.menu-tab {
    padding: 15px 40px;
    background: #14141a;
    border: none;
    color: #b4b4b4;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    letter-spacing: 1px;
}

.menu-tab:hover {
    background: #282832;
    color: #fff;
}

.menu-tab.active {
    background: #ff3232;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 50, 50, 0.4);
}

.menu-tab:nth-child(2).active {
    background: #4cff4c;
    box-shadow: 0 5px 15px rgba(76, 255, 76, 0.4);
    color: #0a0a0f;
}

.menu-tab:nth-child(3).active {
    background: #ffeb3b;
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.4);
    color: #0a0a0f;
}

.menu-tab:nth-child(4).active {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
    color: #0a0a0f;
}

.menu-content {
    padding: 40px;
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #1a1a24;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ff3232;
    box-shadow: 0 10px 30px rgba(255, 50, 50, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    color: #aaa;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    margin-top: 80px;
}

.pricing-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    letter-spacing: 3px;
    color: #ffffff;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a24 0%, #0f0f15 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #2a2a2a;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #ff3232;
    box-shadow: 0 15px 40px rgba(255, 50, 50, 0.4);
}

.pricing-card.featured {
    border-color: #4cff4c;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: #4cff4c;
    box-shadow: 0 15px 40px rgba(76, 255, 76, 0.5);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffeb3b;
    color: #0a0a0f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #ffffff;
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: #ff3232;
    margin-bottom: 30px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 10px 0;
    color: #aaa;
    border-bottom: 1px solid #2a2a2a;
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    background: #0a0a0f;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    position: relative;
    z-index: 1;
}

footer p {
    color: #b4b4b4;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff3232;
}

/* Responsive */
@media (max-width: 768px) {
    .glitch {
        font-size: 48px;
    }
    
    .menu-tabs {
        flex-wrap: wrap;
    }
    
    .menu-tab {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .features-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}


/* Hero Main */
.hero-main {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-subtitle {
    color: #00b8ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #888;
    max-width: 500px;
}

.hero-logo {
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Products Main */
.products-main {
    padding: 60px 0 120px;
}

.products-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-card-main {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid #1a1a1a;
    background: #0f0f0f;
}

.product-card-main.active:hover {
    transform: translateY(-5px);
    border-color: #ff3232;
    box-shadow: 0 20px 60px rgba(255, 50, 50, 0.3);
}

.product-card-main.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-card-main.disabled:hover {
    transform: none;
    border-color: #1a1a1a;
}

.product-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: opacity 0.4s;
    filter: brightness(0.6);
}

.product-card-main:hover .product-bg {
    opacity: 0.3;
    filter: brightness(0.7);
}

.product-status {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #ff3232;
    font-weight: 600;
}

.product-card-main.disabled .product-status {
    color: #ffeb3b;
}

.product-name {
    position: absolute;
    bottom: 80px;
    left: 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.product-tagline {
    position: absolute;
    bottom: 50px;
    left: 30px;
    font-size: 14px;
    color: #666;
}

.product-arrow {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 32px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    display: none;
}

/* Product Page Styles */
.back-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.7;
}

.product-header {
    padding: 40px 0 60px;
}

.product-breadcrumb {
    font-size: 11px;
    color: #ff3232;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.product-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #ffffff;
}

.obs-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(76, 255, 76, 0.1);
    border: 1px solid #4cff4c;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 20px;
    color: #4cff4c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.obs-badge svg {
    width: 20px;
    height: 20px;
}

/* Video & Pricing Section */
.video-pricing-section {
    padding: 40px 0 120px;
}

.video-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: start;
}

.video-column {
    width: 100%;
}

.pricing-column {
    position: sticky;
    top: 40px;
}

.video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    margin-bottom: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Screenshots */
.screenshots-section {
    padding: 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
    display: block;
}

/* Sidebar Section */
.sidebar-section {
    padding: 0;
}

.sidebar-box {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 40px;
    max-width: 600px;
}

.sidebar-title {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    color: #888;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #1a1a1a;
}

.price-option.featured {
    background: rgba(255, 20, 147, 0.05);
    padding: 20px;
    margin: 10px -20px;
    border-radius: 8px;
    border-bottom: none;
}

.price-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.price-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.price-value.red { color: #ff3232; }
.price-value.blue { color: #00b8ff; }
.price-value.yellow { color: #ffeb3b; }
.price-value.green { color: #4cff4c; }
.price-value.pink { color: #ff1493; }

.price-old {
    text-decoration: line-through;
    color: #444;
    font-size: 16px;
}

.buy-button {
    width: 100%;
    padding: 18px;
    margin: 30px 0;
    background: #ff3232;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.buy-button:hover {
    background: #ff5050;
    transform: translateY(-2px);
}

.requirements-box {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

.requirements-title {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: #888;
}

.requirements-text {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.must-disable-title {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: #ff3232;
}

.must-disable-text {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.admin-note {
    font-size: 13px;
    color: #00b8ff;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

footer p {
    font-size: 12px;
    color: #444;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-logo {
        margin: 0 auto;
    }
    
    .products-grid-main {
        grid-template-columns: 1fr;
    }
    
    .video-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-column {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 60px;
    }
    
    .product-main-title {
        font-size: 50px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}


/* Functionality Section */
.functionality-section {
    margin-top: 60px;
    padding: 60px 0;
    border-top: 1px solid #1a1a1a;
}

.functionality-title {
    font-size: 13px;
    letter-spacing: 2px;
    color: #00b8ff;
    margin-bottom: 10px;
}

.functionality-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.functionality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.func-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s;
}

.func-card:hover {
    border-color: #2a2a2a;
    transform: translateY(-3px);
}

.func-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.func-icon svg {
    width: 24px;
    height: 24px;
}

.func-icon.red {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
    color: #ff3232;
}

.func-icon.blue {
    background: rgba(0, 184, 255, 0.1);
    border: 1px solid rgba(0, 184, 255, 0.3);
    color: #00b8ff;
}

.func-icon.yellow {
    background: rgba(255, 235, 59, 0.1);
    border: 1px solid rgba(255, 235, 59, 0.3);
    color: #ffeb3b;
}

.func-icon.pink {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    color: #ff1493;
}

.func-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 15px;
}

.func-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.func-list li {
    font-size: 12px;
    color: #666;
    padding: 6px 0;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
}

.func-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #444;
}

/* Responsive for functionality */
@media (max-width: 1200px) {
    .functionality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .functionality-grid {
        grid-template-columns: 1fr;
    }
}
