/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a0f1e 0%, #02050a 100%);
    color: white;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(20, 30, 60, 0.5) 0%, rgba(0, 0, 0, 0.9) 80%);
    z-index: -1;
}

h1 {
    font-size: 3rem;
}

p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.8;
}

.home-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    position: relative;
    z-index: 2;
}

.hero.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-oval {
    padding: 4rem;
}

/* Add glow and scale animation */
.cta-button {
    display: inline-block;
    padding: 16px 50px;
    margin: 20px 0;
    font-size: 1.2rem;
    background: #1a1a1a;
    color: white;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transform: scale(1);
    position: relative;
    overflow: hidden;
    animation: floatGlow 3s ease-in-out infinite;
}

.cta-button:hover {
    background: white;
    color: blue;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%/30%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 1s ease-out;
    z-index: -1;
}

.cta-button:hover::before {
    transform: translate(-50%, -50%) scale(3);
    width: 100%;
    height: 100%;
}

/* Add ripple effect on click */
.cta-button.ripple {
    animation: rippleEffect 0.6s linear;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
}

@keyframes rippleEffect {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 255, 0.2); }
    100% { box-shadow: 0 0 0 20px rgba(0, 0, 255, 0); }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: Arial, sans-serif !important;
    font-size: 1rem !important;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: inherit;
    font-family: Arial, sans-serif !important;
    font-size: 1rem !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Arial, sans-serif !important;
    font-size: 1rem !important;
}

.logo-icon {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    color: white;
    font-family: Arial, sans-serif !important;
}

.mobile-menu-button::before {
    content: '☰';
    font-size: 24px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-family: Arial, sans-serif !important;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: currentColor;
    z-index: 1001;
    font-family: Arial, sans-serif !important;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    transition: transform 0.3s ease;
}

.mobile-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu a {
    color: inherit;
    text-decoration: none;
    font-size: 1.25rem;
    padding: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
    font-family: Arial, sans-serif !important;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.3s; }

/* Mobile Menu Dots (if applicable) */
.mobile-menu.active + .navbar .dots span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu.active + .navbar .dots span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active + .navbar .dots span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-links {
        display: none;
    }
    .mobile-menu-button {
        display: block;
    }
}