/* ===============================
   Modern Dark Upgrade
   =============================== */

body {
    background: #0f1115;
    color: #e6e6e6;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

/* Headlines */
h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    color: #ffffff;
}

h1 {
    font-weight: 700;
}

h3, h5 {
    color: #b8b8b8;
}

/* Navigation */
.navbar-inverse {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid #222;
}

.nav > li > a {
    color: #ccc !important;
    transition: all 0.3s ease;
}

.nav > li > a:hover {
    color: #ffffff !important;
    background: transparent !important;
}

/* Sections */
.jumbotron {
    background: #171a21;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid #222;
}

/* Divider */
.hr {
    height: 1px;
    background: linear-gradient(to right, transparent, #444, transparent);
    margin: 30px 0;
}

/* Game Covers */
.game-cover-left,
.game-cover-right {
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
}

.game-cover-left:hover,
.game-cover-right:hover {
    transform: scale(1.03);
}

/* Text */
.subtext1 {
    color: #cfcfcf;
    font-size: 15px;
}

/* Audio */
.audio h4 {
    margin-top: 25px;
    font-size: 16px;
    color: #ffffff;
}

.audio ol {
    padding-left: 20px;
}

.audio ol li {
    margin-bottom: 8px;
}

.audio ol li a {
    color: #9ecbff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.audio ol li a:hover {
    color: #ffffff;
}

/* Playing Track Highlight */
.playing a {
    color: #ffffff !important;
    font-weight: 500;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding: 30px 0;
    background: #0b0d11;
    border-top: 1px solid #222;
    color: #777;
}

.footer a {
    color: #aaa;
}

.footer a:hover {
    color: #fff;
}

/* Social Buttons */
#social-buttons {
    background: #111;
    border-right: 1px solid #222;
}

/* Smooth spacing */
.wrap-game {
    padding-top: 30px;
}

/* === Layout Fix für alte Float-Struktur === */

.jumbotron::after {
    content: "";
    display: block;
    clear: both;
}

/* Bilder sauber positionieren */
.game-cover-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    max-width: 350px;
}

.game-cover-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 350px;
}

/* Mehr Abstand zwischen Projekten */
.wrap-game {
    padding-top: 60px;
    padding-bottom: 20px;
}

/* Responsive Fix für Mobil */
@media (max-width: 768px) {
    .game-cover-left,
    .game-cover-right {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
    }
}