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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111827;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Grid Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circle {
    width: 24px;
    height: 24px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
}

.brand-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ff0000;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff15;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.theme-buttons {
    display: flex;
    gap: 0.5rem;
}

.theme-btn {
    background: none;
    border: none;
    color: #d1d5db;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.theme-btn:hover {
    color: white;
    background-color: #374151;
}

/* Main Content */
.main-content {
    padding: 3rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Store Header */
.store-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.store-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff0000, #ec5f5f);
    border-radius: 1rem;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.store-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.title-accent {
    color: #ff0000;
}

.store-description {
    color: #d1d5db;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Pricing Plans */
.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.pricing-card {
    width: 320px;
    max-width: 100%;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.pricing-card:nth-child(1) {
    animation: slideInUp 0.8s ease 0.6s forwards;
}

.pricing-card:nth-child(2) {
    animation: slideInUp 0.8s ease 0.8s forwards;
}

.pricing-card:nth-child(3) {
    animation: slideInUp 0.8s ease 1s forwards;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.pricing-card.green {
    background: linear-gradient(135deg, rgba(150, 5, 5, 0.3), rgba(120, 4, 4, 0.2));
    border-color: rgba(185, 16, 16, 0.3);
}

.pricing-card.green:hover {
    box-shadow: 0 25px 50px rgba(185, 16, 16, 0.4);
}

.pricing-card.blue {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(29, 78, 216, 0.2));
    border-color: rgba(59, 130, 246, 0.3);
}

.pricing-card.blue:hover {
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
}

.pricing-card.purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(124, 58, 237, 0.2));
    border-color: rgba(168, 85, 247, 0.3);
}

.pricing-card.purple:hover {
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.4);
}

.plan-header {
    margin-bottom: 1.5rem;
}

.plan-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.pricing-card.green .plan-price {
    color: #ff0000;
}

.pricing-card.blue .plan-price {
    color: #3b82f6;
}

.pricing-card.purple .plan-price {
    color: #a855f7;
}

.plan-price::before {
    content: '$';
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.feature-item i {
    font-size: 0.5rem;
    width: 8px;
}

.pricing-card.green .feature-item i {
    color: #ff0000;
}

.pricing-card.blue .feature-item i {
    color: #3b82f6;
}

.pricing-card.purple .feature-item i {
    color: #a855f7;
}

.purchase-btn {
    width: 100%;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.green-btn {
    background: #ff0000;
    color: white;
}

.green-btn:hover {
    background: #960505;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(185, 16, 16, 0.3);
}

.blue-btn {
    background: #3b82f6;
    color: white;
}

.blue-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.purple-btn {
    background: #a855f7;
    color: white;
}

.purple-btn:hover {
    background: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

/* What's Included */
.whats-included {
    margin-bottom: 4rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #ffffff;
}

.included-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(31, 41, 55, 0.4);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.included-item:hover {
    border-color: #ff0000;
    transform: translateY(-2px);
}

.included-icon {
    width: 40px;
    height: 40px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.support-text {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(16, 185, 129, 0.2);
    color: #1eb910;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 1px solid #1eb910;
    font-weight: 600;
    animation: securityPulse 3s ease-in-out infinite;
}

/* Reseller Program */
.reseller-program {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 1s ease 1.4s forwards;
}

.reseller-content {
    text-align: center;
}

.reseller-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reseller-icon {
    font-size: 2.5rem;
    color: #a855f7;
}

.reseller-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.reseller-subtitle {
    color: #d1d5db;
    font-size: 1rem;
}

.reseller-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.reseller-feature {
    text-align: center;
}

.reseller-feature h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #a855f7;
    margin-bottom: 0.25rem;
}

.reseller-feature p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.reseller-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #a855f7;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reseller-btn:hover {
    background: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes securityPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .included-features {
        grid-template-columns: 1fr;
    }
    
    .reseller-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .store-title {
        font-size: 2.5rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 2rem 1rem;
    }
    
    .store-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-plans {
        gap: 1.5rem;
    }
}