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

body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.container {
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 64px;
    color: #ff3333;
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 51, 51, 0.9), 0 0 60px rgba(255, 51, 51, 0.5);
    margin: 0;
}

.version-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
    border: 2px solid #ff3333;
    border-radius: 12px;
    padding: 8px 16px;
    color: #00ff99;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.3);
}

.subtitle {
    font-size: 24px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    color: #00ff99;
    margin-top: 10px;
    font-weight: 300;
}

.hero-message {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(0, 255, 153, 0.05) 100%);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.hero-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00ff99 0%, #00cc77 100%);
    color: #000;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(0, 255, 153, 0.5);
    animation: glow 2s ease-in-out infinite;
}

.hero-title {
    font-size: 42px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 51, 51, 0.5);
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    color: #ccc;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 255, 153, 0.5); }
    50% { box-shadow: 0 0 50px rgba(0, 255, 153, 0.8); }
}

.features-section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    color: #ff6666;
    font-size: 36px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 102, 102, 0.5);
}

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

.feature-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: #ff3333;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.4);
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 51, 51, 0.5));
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: #ff6666;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.feature-desc {
    color: #00ff99;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    padding: 0;
}

.feature-list li {
    color: #ccc;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 25px;
    position: relative;
    transition: color 0.3s;
}

.feature-list li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00ff99;
    font-weight: bold;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-card:hover .feature-list li {
    color: #fff;
}

.testimonials-section {
    margin-bottom: 80px;
}

.testimonials-section h2 {
    text-align: center;
    color: #ff6666;
    font-size: 36px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 102, 102, 0.5);
}

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

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 51, 51, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: #00ff99;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 153, 0.3);
    background: linear-gradient(135deg, #2a1a1a 0%, #3a2a2a 100%);
}

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.5));
}

.testimonial-text {
    color: #fff;
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: #00ff99;
    font-size: 16px;
    text-align: right;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.pricing-section {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-subtitle {
    color: #888;
    font-size: 18px;
    margin-top: 10px;
}

.price-box {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 4px solid #ff3333;
    border-radius: 30px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 60px rgba(255, 51, 51, 0.6), inset 0 0 40px rgba(255, 51, 51, 0.1);
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00ff99 0%, #00cc77 100%);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.5);
}

.price-box h3 {
    color: #ff6666;
    margin-bottom: 30px;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.price-currency {
    font-size: 36px;
    color: #00ff99;
    font-weight: 900;
    vertical-align: baseline;
}

.price {
    font-size: 72px;
    color: #00ff99;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 255, 153, 0.6);
}

.price-decimal {
    font-size: 36px;
    color: #00ff99;
    font-weight: 900;
}

.price-note {
    color: #888;
    font-size: 18px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 35px 0;
    position: relative;
    z-index: 1;
}

.price-features li {
    padding: 15px 0;
    color: #fff;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    background: linear-gradient(135deg, #00ff99 0%, #00cc77 100%);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 153, 0.5);
}

.price-features li:last-child {
    border-bottom: none;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-item {
    color: #888;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.purchase-btn {
    width: 100%;
    margin: 40px auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 28px 40px;
    background: linear-gradient(135deg, #ff3333 0%, #ff5555 50%, #ff3333 100%);
    background-size: 200% 100%;
    border: 4px solid #ff3333;
    border-radius: 20px;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 50px rgba(255, 51, 51, 0.7), inset 0 0 30px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.purchase-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.5s;
}

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

.purchase-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 70px rgba(255, 51, 51, 1), inset 0 0 40px rgba(255, 255, 255, 0.2);
    background-position: 100% 0;
    border-color: #ff5555;
}

.purchase-btn:active {
    transform: translateY(-4px) scale(0.98);
}

.btn-icon {
    font-size: 32px;
    animation: bounce 2s ease-in-out infinite;
}

.btn-text {
    font-size: 24px;
}

.btn-arrow {
    font-size: 28px;
    transition: transform 0.3s;
}

.purchase-btn:hover .btn-arrow {
    transform: translateX(5px);
}

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

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.info-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #00ff99;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 153, 0.2);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 153, 0.5));
}

.info-card h4 {
    color: #00ff99;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Confirmation page styles */
.code-section {
    max-width: 800px;
    margin: 0 auto;
}

.code-display-box {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 3px solid #00ff99;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 50px rgba(0, 255, 153, 0.3);
}

.code-label {
    color: #00ff99;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: bold;
}

.code-display {
    font-size: 48px;
    font-weight: 900;
    color: #00ff99;
    letter-spacing: 8px;
    font-family: 'Courier New', monospace;
    padding: 20px;
    background: rgba(0, 255, 153, 0.1);
    border-radius: 12px;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 255, 153, 0.5);
    word-break: break-all;
}

.copy-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #00ff99 0%, #00cc77 100%);
    border: 2px solid #00ff99;
    border-radius: 12px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 153, 0.5);
}

.code-instruction {
    color: #888;
    font-size: 14px;
    margin-top: 15px;
}

.warning-box {
    background: linear-gradient(135deg, #2a1a00 0%, #1a0a00 100%);
    border: 3px solid #ffcc00;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.warning-content h3 {
    color: #ffcc00;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-content p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.warning-content ul {
    list-style: none;
    padding: 0;
}

.warning-content li {
    color: #ffcc00;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.warning-content li:last-child {
    border-bottom: none;
}

.tutorial-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.tutorial-section h2 {
    color: #ff6666;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tutorial-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #ff3333 0%, #ff5555 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h3 {
    color: #ff6666;
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.step-content a {
    color: #00ff99;
    text-decoration: underline;
}

.step-note {
    color: #888;
    font-size: 14px;
    font-style: italic;
}

.success-footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 16px;
}

.success-footer p {
    color: #00ff99;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.redirect-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff3333 0%, #ff5555 100%);
    border: 2px solid #ff3333;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.redirect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.5);
}

.account-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ff6666;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #ff3333;
}

.error-message {
    background: #ff3333;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.success-message {
    background: #00ff99;
    color: #000;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.loading {
    display: none;
    text-align: center;
    color: #ffcc00;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    .version-badge {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 42px;
    }
    
    .purchase-btn {
        font-size: 20px;
        padding: 20px;
    }
    
    .code-display {
        font-size: 32px;
        letter-spacing: 4px;
        padding: 15px;
    }
    
    .code-display-box {
        padding: 25px;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .warning-icon {
        font-size: 36px;
    }
    
    .tutorial-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
    
    .tutorial-section {
        padding: 25px;
    }
    
    .tutorial-section h2 {
        font-size: 24px;
    }
}
