/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Typography */
    --ff-main: "Roboto", sans-serif;
    --ff-accent: "Poppins", sans-serif;
    
    /* Colors */
    --color-primary: #007BFF;
    --color-primary-rgb: 0, 123, 255;
    --color-secondary: #6610F2;
    --color-secondary-rgb: 102, 16, 242;
    --color-dark: #0a0a0f;
    --color-light: #ffffff;
    --color-text: #e0e0e0;
}

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

/* Base Elements */
body {
    background: 
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(28, 28, 37, 0.8) 60%,
            rgba(22, 22, 54, 0.8) 70%,
            rgba(31, 2, 85, 0.8) 80%,
            rgba(0, 123, 255, 0.8) 100%
        ),
        url("../images/background.png") center top/cover no-repeat fixed;
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-light);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-light);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--color-light);
}

p {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.2px;
    margin-bottom: 1.2rem;
    color: var(--color-text);
    margin-top: 1.2rem;
}


/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--color-primary);
    color: var(--color-light);
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-header {
    display: inline-block;
    padding: 1px 1px;
    border-radius: 7px;
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: white;
}

.btn-header span {
    display: inline-block;
    background: var(--color-dark);
    border-radius: 6px;
    padding: 6px 16px;
    color: var(--color-light);
    position: relative;
    z-index: 2;
}

.btn-header:hover {
    background: var(--color-light);
    color: var(--color-light);
}

.btn-secondary {
    display: inline-block;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--color-light);
    border: 2px solid var(--color-light);
}

.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    background: var(--color-primary);
    color: var(--color-light);
    border: none;
}


.btn-tertiary {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-tertiary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    background: var(--color-primary);
    color: var(--color-light);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}
