/* ==================== GLOBAL.CSS ==================== */

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

:root {
    --primary-blue: #1FB6E8;
    --primary-blue-dark: #1E4DB7;
    --primary-purple: #8E3CF7;
    --primary-purple-dark: #5B2DA6;
    --dark-bg: #0B0F2A;
    --accent-white: #FFFFFF;
    --primary-gradient: linear-gradient(135deg, #1FB6E8 0%, #8E3CF7 100%);
    --dark-gradient: linear-gradient(135deg, #0B0F2A 0%, #1E4DB7 100%);
    
    --dark: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-dark: #222;
    --text-light: #666;
    --text-lighter: #bbb;
    --shadow-sm: 0 4px 12px rgba(31, 182, 232, 0.12);
    --shadow-md: 0 8px 25px rgba(31, 182, 232, 0.15);
    --shadow-lg: 0 15px 50px rgba(31, 182, 232, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    width: 100%;  /* ADD THIS */
    overflow-x: hidden;  /* ADD THIS */
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;  /* CHANGE from: #050505 */
    overflow-x: hidden;
    cursor: none;
    padding-top: 0;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
}

::selection {
    background-color: var(--primary-blue);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Buttons */
.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 6px 20px rgba(31, 182, 232, 0.3);
}

.btn-primary:hover {
    background: var(--primary-gradient);
    box-shadow: 0 10px 35px rgba(142, 60, 247, 0.4);
    transform: translateY(-3px);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(31, 182, 232, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(31, 182, 232, 0.2);
    transform: translateY(-3px);
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --shadow-sm: 0 3px 10px rgba(31, 182, 232, 0.1);
        --shadow-md: 0 6px 20px rgba(31, 182, 232, 0.12);
        --shadow-lg: 0 10px 40px rgba(31, 182, 232, 0.15);
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        max-width: 600px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}