@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Rajdhani:wght@500;700&display=swap');

:root {
    --primary-color: #00f0ff;
    --secondary-color: #ff00f0;
    --accent-color: #00ffa3;
    --text-color: #cccccc;
    --light-bg: #1a1a3a;
    --dark-bg: #0a0a1a;
    --glow-cyan: 0 0 15px #00f0ff, 0 0 25px #00f0ff66;
    --glow-pink: 0 0 10px #ff00f0, 0 0 20px #ff00f066;
    --glow-mint: 0 0 20px #00ffa355;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
}

header {
    background-color: var(--dark-bg);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--primary-color);
}

.logo-container {
    width: 150px;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px #00f0ff);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #00f0ff;
}

.hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 15, 0.85);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px #000, var(--glow-cyan);
    font-family: 'Orbitron', sans-serif;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 8px #000, var(--glow-pink);
    font-family: 'Rajdhani', sans-serif;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #ffffff;
    text-shadow: 0 0 5px #000;
    background: rgba(0,0,0,0.5);
    padding: 1rem;
    border-radius: 8px;
}

.hero .slogan {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-shadow: var(--glow-mint);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    border: 1px solid var(--accent-color);
}

.section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    margin-bottom: 2rem;
}

.feature-card.youtube-video {
    grid-column: 1 / -1;
    text-align: center;
}

.feature-card.youtube-video .video-container {
    margin: 0 auto;
    max-width: 100%;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pricing-card {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
}

.pricing-header {
    background: rgba(0, 240, 255, 0.1);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--primary-color);
}

.pricing-header h3 {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.price-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 163, 0.5);
}

.period {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.feature-icon {
    color: var(--accent-color);
    margin-right: 1rem;
    font-weight: bold;
}

.buy-button {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 1rem;
}

.buy-button:hover {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    letter-spacing: 2px;
}

footer {
    background-color: var(--dark-bg);
    color: var(--text-color);
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Checkout Page Styles */
.checkout-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header h1 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    text-shadow: var(--glow-cyan);
    margin-bottom: 1.5rem;
}

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.step {
    color: var(--text-color);
    opacity: 0.5;
    font-family: 'Orbitron', sans-serif;
    position: relative;
}

.step.active {
    opacity: 1;
    color: var(--primary-color);
}

.step.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: var(--glow-cyan);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.order-summary, .payment-form {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.order-summary h2, .payment-form h2 {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.product-card {
    background: rgba(26, 26, 58, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--accent-color);
}

.product-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.order-total {
    margin-top: 2rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.grand-total {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.pay-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 4px;
    color: var(--dark-bg);
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.pay-button:hover {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    letter-spacing: 2px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.payment-methods i {
    font-size: 2rem;
    margin: 0 0.5rem;
    color: var(--text-color);
    transition: all 0.3s;
}

.payment-methods i:hover {
    color: var(--primary-color);
    text-shadow: var(--glow-cyan);
}

.payment-methods i.selected {
    color: var(--accent-color);
    text-shadow: var(--glow-mint);
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px var(--accent-color));
}

.fa-cc-visa {
    color: #00579f;
}

.fa-cc-mastercard {
    color: #eb001b;
}

.fa-cc-paypal {
    color: #003087;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.report-card {
    background: rgba(26, 26, 58, 0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.report-card img {
    width: 100%;
    border-radius: 4px;
    margin: 1rem 0;
}

.report-link {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    transition: all 0.3s;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.requirement-card {
    background: rgba(26, 26, 58, 0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.requirement-card.full-width {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
}

.requirement-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.requirement-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: rgba(26, 26, 58, 0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.contact-form {
    background: rgba(26, 26, 58, 0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s;
}

.submit-button:hover {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    letter-spacing: 2px;
}

.requirement-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.report-link:hover {
    background: var(--accent-color);
    letter-spacing: 1px;
}

.download-btn {
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    background: rgba(0, 240, 255, 0.2);
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
}

.download-btn:hover {
    background: rgba(0, 240, 255, 0.4);
    box-shadow: var(--glow-cyan);
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Live Performance Section */
.live-performance {
    background: rgba(26, 26, 58, 0.5);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    margin-bottom: 2rem;
}

.live-performance h2 {
    color: var(--accent-color);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: var(--glow-mint);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.platform-tag {
    background: rgba(0, 240, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 140px;
    background: rgba(10, 10, 26, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.widget-container img,
.widget-container iframe {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.widget-container iframe {
    min-height: 140px;
    border: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9999;
    border: 2px solid var(--accent-color);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
}

.original-price-highlight {
    color: #ff0000;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.strikethrough.original-price-highlight {
    color: #ff0000;
    text-decoration: line-through;
    font-weight: bold;
}
