:root {
    --primary-color: #00E5FF;
    --secondary-color: #7B42F6;
    --background: #0A0A0A;
    --text-color: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    background: rgba(20, 20, 20, 0.7);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    margin-bottom: 4rem;
}

.logo-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'Syncopate', sans-serif;
    color: var(--primary-color);
    transition: all 0.4s ease;
    background: rgba(10, 10, 10, 0.8);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.2);
}

.logo-placeholder:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.3);
    border-color: var(--secondary-color);
}

h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    font-weight: 900;
}

.animate-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.highlight {
    color: var(--secondary-color);
    margin-left: 0.5rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #999;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter {
    margin: 4rem 0;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.newsletter button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.contact-info {
    margin-bottom: 3rem;
}

.info-item {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-right: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.info-item:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}

.info-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.separator {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.2);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    .logo-placeholder {
        width: 150px;
        height: 150px;
        font-size: 1.2rem;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter button {
        width: 100%;
    }

    .info-item {
        display: block;
        margin-right: 0;
        font-size: 1rem;
    }

    .social-links {
        gap: 1.5rem;
    }
}

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

    .subtitle {
        font-size: 1.2rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .separator {
        display: none;
    }
}