/* Main Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0e27;
    --primary-light: #1a1f3a;
    --accent-teal: #00d4ff;
    --accent-teal-hover: #00b8d4;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-color: #2a2f4a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ======================== SECTION LAYOUT ======================== */
section {
    min-height: 100vh;
    padding: 100px 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-content {
    max-width: 1200px;
    width: 100%;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-teal);
    border-radius: 2px;
}

/* ======================== BUTTONS ======================== */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-teal);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-teal);
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button-outline {
    background: transparent;
    color: var(--accent-teal);
    margin-left: 1rem;
}

.cta-button-outline:hover {
    background: var(--accent-teal);
    color: var(--primary-dark);
}

/* ======================== ANIMATIONS ======================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ======================== FOOTER ======================== */
footer {
    background: var(--primary-light);
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}
