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

:root {
    --primary-color: #6c63ff;
    --secondary-color: #f50057;
    --text-color: #f5f5f5;
    --background-color: #0f0f1e;
    --dark-color: #070711;
    --accent-color: #00f2ff;
    --font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-family);
    background: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--background-color), var(--dark-color));
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Container Layout */
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header Styles */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 3rem;
    width: 100%;
}

.logo {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.logo img {
    max-height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.logo:hover {
    transform: scale(1.05);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav a:hover::after, 
nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav a.active {
    color: var(--primary-color);
}

/* Main Content */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 2rem 0;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

h1 .highlight {
    color: var(--primary-color);
    position: relative;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countdown-item .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Newsletter */
.newsletter {
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.newsletter p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.newsletter form {
    display: flex;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 1rem;
}

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

.newsletter button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-family);
}

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

/* Success Message */
.success-message {
    color: var(--accent-color);
    margin-top: 1rem;
    padding: 0.5rem;
    font-weight: 500;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: white;
    border-color: transparent;
}

.social-icon:hover::before {
    opacity: 1;
}

/* Footer Styles */
footer {
    margin-top: auto;
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
    display: block;
    clear: both;
    flex-shrink: 0;
    background-color: rgba(15, 15, 30, 0.8);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    padding: 0 1rem;
    color: var(--text-color);
}

.copyright:hover {
    opacity: 1;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Add AOS library styles */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 1s;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        max-height: 80px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
    }
    
    .newsletter form {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter input {
        width: 100%;
        padding: 1rem;
        text-align: center;
    }
    
    .newsletter button {
        width: 100%;
        border-radius: 0 0 15px 15px;
    }

    .copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .logo img {
        max-height: 70px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .countdown-item span:first-child {
        font-size: 2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    footer {
        margin-top: 2rem;
        padding: 1rem 0;
        position: relative;
        bottom: 0;
    }

    .copyright {
        font-size: 0.75rem;
        line-height: 1.5;
    }
} 