* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle, #0a0a2a 0%, #000 70%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(100, 0, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 200, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 30% 60%, rgba(255, 0, 150, 0.15) 0%, transparent 20%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 100, 255, 0.3);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(45deg, #00f3ff, #a100ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #00f3ff, #a100ff, #ff00cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(161, 0, 255, 0.3);
}

.hero h1 span {
    display: block;
    font-size: 2.5rem;
    margin-top: 10px;
}

.highlight {
    color: #00f3ff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.7);
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #00f3ff, #a100ff);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(161, 0, 255, 0.5);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(161, 0, 255, 0.8);
    background: linear-gradient(45deg, #a100ff, #00f3ff);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    opacity: 0.9;
    filter: drop-shadow(0 0 20px rgba(161, 0, 255, 0.5));
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(to right, #00f3ff, #a100ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.specs {
    flex: 1;
    background: rgba(20, 20, 40, 0.7);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.3);
    box-shadow: 0 0 30px rgba(100, 0, 255, 0.2);
}

.spec-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(100, 100, 255, 0.2);
}

.spec-icon {
    font-size: 24px;
    color: #00f3ff;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.spec-text h3 {
    color: #a100ff;
    margin-bottom: 5px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(20, 20, 40, 0.7);
    border-radius: 15px;
    padding: 30px;
    width: 280px;
    border: 1px solid rgba(100, 100, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(161, 0, 255, 0.3);
    border-color: rgba(161, 0, 255, 0.5);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #a100ff;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #00f3ff;
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 20px;
    word-break: break-all;
}

.whatsapp-button {
    display: inline-block;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.special-notice {
    margin-top: 60px;
    padding: 20px;
    background: rgba(161, 0, 255, 0.1);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(100, 100, 255, 0.3);
    margin-top: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(161, 0, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(161, 0, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(161, 0, 255, 0); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-image {
        width: 40%;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        position: relative;
        width: 80%;
        margin: 40px auto 0;
        transform: none;
        top: 0;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
}

/* Matrix background effect */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.1;
    pointer-events: none;
}