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

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d0a0f 100%);
    z-index: -3;
}

html {
    background: #0a0a0a;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

/* Logo */
.logo-container {
    animation: float 3s ease-in-out infinite;
}

.logo-img {
    max-width: 200px;
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 10px 30px rgba(139, 0, 0, 0.5));
    transition: transform 0.3s ease;
    border: 4px solid rgba(139, 0, 0, 0.3);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Brand Color */
.text-brand {
    color: #8B0000;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.bg-brand {
    background: linear-gradient(135deg, #8B0000 0%, #a30000 100%);
}

.btn-brand {
    background: linear-gradient(135deg, #8B0000 0%, #a30000 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background: linear-gradient(135deg, #a30000 0%, #c10000 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
}

/* Typography */
h1 {
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.lead {
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Coming Soon Badge */
.coming-soon-badge .badge {
    font-weight: 600;
    border-radius: 50px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(139, 0, 0, 0);
    }
}

/* Newsletter Section */
.newsletter-section {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 1);
}

.newsletter-form .btn {
    border-radius: 0;
    white-space: nowrap;
}

/* Social Links */
.social-links {
    max-width: 600px;
    margin: 0 auto;
}

.social-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 1rem;
}

.social-btn:hover {
    background: #8B0000;
    border-color: #8B0000;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
}

.social-btn i {
    margin-bottom: 0.25rem;
}

.social-btn span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        max-width: 150px;
        width: 150px;
        height: 150px;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    .lead {
        font-size: 1.1rem !important;
    }

    .social-btn {
        width: 75px;
        height: 75px;
        font-size: 1.5rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }

    .newsletter-form .form-control {
        border-radius: 15px 15px 0 0;
    }

    .newsletter-form .btn {
        border-radius: 0 0 15px 15px;
        width: 100%;
    }

    .main-container {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        max-width: 120px;
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 2rem !important;
    }

    .social-btn {
        width: 65px;
        height: 65px;
        font-size: 1.3rem;
    }

    .social-btn span {
        font-size: 0.65rem;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper > * {
    animation: fadeIn 0.8s ease-out;
}
