@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 1180px;
    margin: 0 auto;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

h3 {
    font-size: 1.8rem;
    color: #ff00ff;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes glow {
    from { text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    to { text-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 40px rgba(255, 0, 255, 0.5); }
}

@keyframes neon-pulse {
    0% { box-shadow: 0 0 5px #00ffff; }
    50% { box-shadow: 0 0 20px #00ffff, 0 0 30px #ff00ff; }
    100% { box-shadow: 0 0 5px #00ffff; }
}

@keyframes matrix-rain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Hero Section (Block 1) */
.hero-section {
    min-height: 430px;
    background:
        linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 50%, rgba(255, 255, 0, 0.1) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.1) 2px,
            rgba(0, 255, 255, 0.1) 4px
        ),
        radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.2) 0%, transparent 50%),
        #0a0a0a;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #00ffff;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2300ffff' fill-opacity='0.1'%3E%3Cpath d='m0 40 40-40H0v40zm40 0V0h40v40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: matrix-rain 20s linear infinite;
    opacity: 0.3;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #b0b0b0;
}

.hero-benefits {
    margin-bottom: 2.5rem;
}

.hero-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-benefits li {
    font-family: 'Space Mono', monospace;
    color: #00ffff;
    font-size: 1.1rem;
    position: relative;
    padding-left: 10px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
    animation: neon-pulse 1.5s infinite;
}

/* Section Spacing */
section {
    padding: 80px 0;
    position: relative;
}

/* Products Section (Block 3) */
.products-section {
    background: #111111;
    border-top: 2px solid #ff00ff;
    border-bottom: 2px solid #ff00ff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 0;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #00ffff, #ff00ff) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.featured {
    transform: scale(1.05);
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffff00;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

.features {
    list-style: none;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    color: #b0b0b0;
    position: relative;
    padding-left: 20px;
}

.features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-size: 0.8rem;
}

/* Investment Guide Article */
.investment-guide {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 2px solid #ffff00;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    box-shadow: inset 0 0 50px rgba(255, 255, 0, 0.1);
}

.investment-guide::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffff00, #ff00ff, #00ffff);
    z-index: -1;
    border-radius: 0;
}

.investment-guide h3 {
    color: #ffff00;
    font-size: 2rem;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
}

.investment-guide p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d0d0d0;
    text-align: justify;
}

/* Reviews Section (Block 5) */
.reviews-section {
    background: #0f0f0f;
    border-top: 2px solid #00ffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 30px;
    border-left: 4px solid #ff00ff;
    position: relative;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2);
}

.rating {
    color: #ffff00;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

.review-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.reviewer strong {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
}

.reviewer span {
    color: #888;
    font-size: 0.9rem;
    font-family: 'Space Mono', monospace;
}

/* Newsletter Section (Block 2) */
.newsletter-section {
    background: #111111;
    border-top: 2px solid #ff00ff;
    border-bottom: 2px solid #ff00ff;
    text-align: center;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid #333;
    color: #e0e0e0;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: #0a0a0a;
}

.newsletter-form input[type="email"]::placeholder {
    color: #666;
}

.subscribe-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border: none;
    color: #000;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
    animation: neon-pulse 1s infinite;
}

.privacy-note {
    font-size: 0.9rem;
    color: #888;
    font-family: 'Space Mono', monospace;
}

/* Team Section (Block 4) */
.team-section {
    background: #0a0a0a;
    border-top: 2px solid #ffff00;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 30px;
    border-top: 3px solid #ffff00;
    position: relative;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 0, 0.2);
}

.team-member .position {
    color: #ff00ff;
    font-family: 'Space Mono', monospace;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #b0b0b0;
}

.credentials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 5px 12px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section (Block 6) */
.contact-section {
    background: #111111;
    border-top: 2px solid #00ffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.contact-info h3 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.address strong {
    color: #ffff00;
    font-family: 'Orbitron', monospace;
}

.business-hours {
    margin-top: 30px;
}

.map-container {
    position: relative;
}

.map-container iframe {
    filter: hue-rotate(180deg) invert(90%) contrast(120%);
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Footer (Block 7) */
.footer {
    background: #0a0a0a;
    border-top: 2px solid #ff00ff;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-benefits ul {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .reviews-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card.featured {
        transform: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-group {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button,
    .subscribe-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .investment-guide {
        padding: 25px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .price {
        font-size: 2rem;
    }

    .investment-guide {
        padding: 20px;
    }

    .team-member,
    .product-card,
    .review-card {
        padding: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: rgba(0, 255, 255, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(0, 255, 255, 0.3);
    color: #fff;
}
