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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 100%);
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

h2 {
    font-size: 2rem;
    color: #ffff00;
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
}

h3 {
    font-size: 1.4rem;
    color: #ff6b35;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.1rem;
}

/* Block 1: Hero Section */
#hero {
    background: linear-gradient(45deg, #1a252f 0%, #2d4a5c 50%, #1a252f 100%);
    padding: 60px 40px;
    text-align: center;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 3px solid #00d4ff;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0, 212, 255, 0.1) 10px,
            rgba(0, 212, 255, 0.1) 20px
        );
    z-index: 1;
}

#hero > * {
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 25px;
    border: 3px solid #ffff00;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
    transform: translateY(-3px);
}

/* Specialists Section */
#specialists {
    background: linear-gradient(135deg, #2d4a5c 0%, #1e3a4a 100%);
    padding: 50px 40px;
    border: 2px solid #ffff00;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.specialists-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.specialist {
    background: rgba(0, 212, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #00d4ff;
    transition: all 0.3s ease;
}

.specialist:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* Products Section */
#products {
    background: linear-gradient(135deg, #3a1f3d 0%, #2d1b30 100%);
    padding: 50px 40px;
    border: 2px solid #ff6b35;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.product {
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #ff6b35;
    text-align: center;
    transition: all 0.3s ease;
}

.product:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    margin-top: 15px;
}

/* Gaming Guide Article */
.gaming-guide {
    background: linear-gradient(135deg, #1a252f 0%, #0f1419 100%);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #ffff00;
    margin-top: 40px;
    position: relative;
}

.gaming-guide::before {
    content: 'GUIDE';
    position: absolute;
    top: -15px;
    left: 30px;
    background: #ffff00;
    color: #0f1419;
    padding: 5px 20px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.gaming-guide h3 {
    color: #ffff00;
    margin-bottom: 20px;
}

/* Reviews Section */
#reviews {
    background: linear-gradient(135deg, #1e3a4a 0%, #2d4a5c 100%);
    padding: 50px 40px;
    border: 2px solid #00d4ff;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review {
    background: rgba(255, 255, 0, 0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ffff00;
    transition: all 0.3s ease;
}

.review:hover {
    background: rgba(255, 255, 0, 0.2);
    transform: translateX(10px);
}

.reviewer {
    font-style: italic;
    color: #00d4ff;
    font-weight: 600;
    margin-top: 15px;
}

/* Subscription Form */
#subscribe {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 50px 40px;
    text-align: center;
    border: 3px solid #ffff00;
    border-radius: 10px;
    margin-bottom: 2rem;
    color: #ffffff;
}

#subscribe h2 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

#subscribe form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

#subscribe input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 3px solid #1a252f;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    background: #ffffff;
    color: #1a252f;
    outline: none;
    transition: all 0.3s ease;
}

#subscribe input[type="email"]:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

#subscribe button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #1a252f 0%, #2d4a5c 100%);
    color: #ffffff;
    border: 3px solid #00d4ff;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#subscribe button:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #1a252f;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 100%);
    padding: 50px 40px;
    border: 2px solid #ffff00;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Footer */
#copyright {
    background: linear-gradient(135deg, #1a252f 0%, #0f1419 100%);
    padding: 30px 40px;
    text-align: center;
    border-top: 3px solid #ff6b35;
    border-radius: 10px 10px 0 0;
}

#copyright p {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        margin: 0 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    #hero {
        padding: 40px 20px;
        min-height: 350px;
    }

    section {
        padding: 30px 20px !important;
        margin-bottom: 1rem;
    }

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

    #subscribe form {
        flex-direction: column;
        gap: 15px;
    }

    #subscribe input[type="email"],
    #subscribe button {
        width: 100%;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

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

    h2 {
        font-size: 1.3rem;
    }

    #hero {
        min-height: 300px;
        padding: 30px 15px;
    }

    section {
        padding: 20px 15px !important;
    }

    .specialist,
    .product,
    .review {
        padding: 15px;
    }

    .gaming-guide {
        padding: 20px;
    }

    .price {
        font-size: 1.5rem;
    }
}
