/* Global Reset and Full Screen Setup */
* {
    box-sizing: border-box;
}

body, html { 
    margin: 0; 
    padding: 0; 
    width: 100%; 
    height: 100%; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: #050505;
    background-image: 
        linear-gradient(to right, rgba(255, 49, 49, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 49, 49, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #eee;
}

/* The Main Container Frame */
.container { 
    width: 100vw; 
    height: 100vh; 
    display: flex;
    flex-direction: column;
    border: 4px solid #1a1a1a; 
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
    overflow: hidden; 
    background: rgba(5, 5, 5, 0.85); 
}

/* --- HEADER SETUP --- */
header { 
    padding: 10px 60px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 49, 49, 0.3);
    z-index: 1000;
    flex-shrink: 0;
}

/* --- LOGO AREA (Bigger Logo, Smaller Text) --- */
.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: fit-content;
}

.logo-img { 
    height: 60px; /* Big impact size */
    width: auto; 
    filter: drop-shadow(0 0 20px rgba(255, 49, 49, 0.6));
    transition: transform 0.3s ease;
}

.logo-text { 
    font-weight: 900; 
    text-transform: lowercase;
    letter-spacing: 3px;
    background: linear-gradient(to right, #fff, #ff3131);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8em; /* Scaled down slightly */
    line-height: 2;
}

/* --- NAV BAR (Sleeker size + Animation kept) --- */
.nav-bar { 
    display: flex; 
    gap: 30px; 
}

.nav-bar a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 0.85em; /* Sleeker nav text */
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
}

/* The Underline Animation Logic */
.nav-bar a::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Positioned slightly closer for the smaller nav */
    left: 0;
    width: 0;
    height: 2px;
    background: #ff3131;
    box-shadow: 0 0 10px #ff3131;
    transition: width 0.3s ease;
}

.nav-bar a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 49, 49, 0.5);
}

.nav-bar a:hover::after { 
    width: 100%; 
}

/* --- MAIN TITLE (Smaller per request) --- */
.main-title {
    font-size: 2.8em; 
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #ff3131);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
/* Main Content Area */
.content {
    flex-grow: 1;
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centers the hero card */
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

/* --- HERO SPECIFIC STYLES --- */

.hero-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 49, 49, 0.2);
    border-radius: 24px;
    padding: 60px;
    max-width: 1000px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.hero-images { 
    display: flex; 
    gap: 25px; 
    justify-content: center; 
    margin-bottom: 40px; 
    flex-wrap: wrap; 
}

.hero-img { 
    width: 380px; 
    height: 220px; 
    object-fit: cover; 
    border-radius: 15px; 
    border: 2px solid rgba(255, 49, 49, 0.3);
    box-shadow: 0 0 20px rgba(255, 49, 49, 0.15);
    transition: all 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.03);
    border-color: #ff3131;
    box-shadow: 0 0 30px rgba(255, 49, 49, 0.4);
}

.main-title {
    font-size: 3.5em;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #ff3131);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2em; 
    color: #bbb; 
    margin-bottom: 40px; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #cc0000 0%, #ff3131 100%);
    color: white; 
    text-decoration: none; 
    padding: 20px 50px; 
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.btn-hero:hover {
    box-shadow: 0 0 30px rgba(255, 49, 49, 0.6);
    transform: translateY(-3px) scale(1.05);
}

/* Responsiveness */
@media (max-width: 768px) {
    .main-title { font-size: 2.2em; }
    .hero-img { width: 100%; height: auto; }
    header { padding: 20px; }
}