/* ==========================================================================
   1. Reset and Core Layout Styles 
   ========================================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background: linear-gradient(135deg, #020202 0%, #0d0d0d 50%, #050505 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   2. Hero / Header Area 
   ========================================================================== */
.hero-section {
    position: relative;
    height: 45vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2,2,2,0.2) 0%, rgba(5,5,5,1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.game-logo {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.8));
}

.game-tagline {
    font-size: 1.1rem;
    color: #888888;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 25px; /* Keeps clean padding right above the button */
}

/* ==========================================================================
   3. Premium Action Button Component
   ========================================================================== */
.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Styled to match your beautiful gold/iron accent theme */
.btn-primary {
    background-color: #141414;
    color: #ffd966;
    border: 1px solid #4a3e1a;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    background-color: #ffd966;
    color: #050505;
    border-color: #ffd966;
    box-shadow: 0px 0px 15px rgba(255, 217, 102, 0.4);
    cursor: pointer;
}

/* ==========================================================================
   4. Main Content Areas 
   ========================================================================== */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    padding: 40px 0;
    color: #ffd966;
}

.content-section h2 {
    font-size: 1.8rem;
    color: #ffd966;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-section p {
    color: #999999;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   5. Sandbox Inspiration Lists 
   ========================================================================== */
.inspiration-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 25px;
}

.inspiration-list li {
    color: #ffecb3;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.inspiration-list li::before {
    content: "\25AA"; /* Solid square bullet glyph */
    color: #e0e0e0;
    font-size: 0.9rem;
    position: absolute;
    left: 0;
    top: -1px;
}

.inspiration-list li strong {
    color: #ffd966;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   6. Footer & Legal Footprints 
   ========================================================================== */
.game-footer {
    background-color: #010101;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #111111;
    margin-top: 30px;
}

.footer-container {
    max-width: 750px;
    margin: 0 auto;
}

.footer-logo-wrapper {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-mini-logo {
    height: 32px;
    width: auto;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-mini-logo:hover {
    opacity: 1; 
}

.copyright-line {
    color: #cccccc;
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.legal-disclaimer {
    color: #555555; 
    font-size: 11px;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   7. Responsive Mobile Handling 
   ========================================================================== */
@media (max-width: 768px) {
    .game-logo { max-width: 100%; }
    .game-tagline { font-size: 1rem; }
    .hero-section { height: 35vh; }
    .content-section { padding: 30px 0; }
}
