@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Exo 2', 'Arial', sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
}

/* Global typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', 'Arial', sans-serif;
    font-weight: 600;
}

/* Global button styles */
.btn {
    font-family: 'Exo 2', 'Arial', sans-serif;
    padding: 20px;
    background: #D1133B;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background: #B10E32;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(209, 19, 59, 0.3);
}

.btn:active {
    transform: translateY(0);
}

/* Global input styles */
input, select, textarea {
    font-family: 'Exo 2', 'Arial', sans-serif;
}

/* Logo styles */
.logo-svg {
    width: 300px;
    height: auto;
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .logo-svg {
        width: 250px;
    }
}