@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --red: #ff2a00;
    --dark: #0d0d0d;
    --card: #1a1a1a;
    --text: #ffffff;
    --gray: #a6a6a6;
}

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

html, body { 
    overflow-x: hidden;
    width: 100%;
    background-color: var(--dark); 
    color: var(--text); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.4;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 15px; 
    width: 100%;
}

.header { 
    padding: 15px 0; 
    background: #000; 
    border-bottom: 1px solid #222;
}

.header-inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap;
    gap: 10px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.logo-text {
    font-weight: 900; 
    font-size: 24px;
    color: #fff;
    text-transform: lowercase; 
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text::before {
    content: 'm';
    color: var(--red);
    margin-right: -11px; 
    transform: translateX(-5px);
}

.logo-text span {
    position: relative;
    z-index: 1;
}

.btn { 
    padding: 10px 20px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 700; 
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
}

.btn-red { background: var(--red); color: #fff; }

.hero-banner {
    margin-top: 20px;
    min-height: 450px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000 45%, rgba(0,0,0,0) 90%);
    z-index: 2;
}

.hero-info {
    position: relative;
    z-index: 10;
    max-width: 500px;
    padding-left: 40px;
}

.badge { 
    color: var(--red); 
    font-weight: 700; 
    font-size: 12px; 
    text-transform: uppercase; 
    margin-bottom: 12px;
    display: block;
}

.hero-info h1 { 
    font-size: 42px; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin-bottom: 25px;
    line-height: 1.0;
}

.footer { 
    background: #080808; 
    padding: 60px 0 40px; 
    margin-top: 40px; 
    border-top: 1px solid #222;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
}

@media (min-width: 768px) { 
    .footer-grid { grid-template-columns: repeat(5, 1fr); } 
}

.footer-col h4 { 
    color: var(--gray); 
    margin-bottom: 20px; 
    font-size: 13px; 
    text-transform: uppercase;
}

.footer-col a { 
    display: block; 
    color: #fff; 
    text-decoration: none; 
    margin-bottom: 12px; 
    opacity: 0.6; 
    font-size: 14px; 
}

@media (max-width: 768px) {
    .header-inner { justify-content: center; gap: 15px; }
    .logo-text { width: 100%; justify-content: center; font-size: 22px; }
    .hero-banner { min-height: 380px; padding: 30px 15px; align-items: flex-end; }
    .hero-bg { width: 100%; object-position: center; opacity: 0.5; }
    .hero-overlay { background: linear-gradient(0deg, #000 30%, rgba(0,0,0,0) 100%); }
    .hero-info { padding-left: 0; text-align: center; width: 100%; margin-bottom: 20px; }
    .hero-info h1 { font-size: 28px; }
    .btn { width: 100%; max-width: 280px; }
}