body {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('/static/images/hero-bg.png') center/cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.hero-section {
    background: rgba(0,0,0,0.3);
    padding: 100px 0;
    margin-top: 20px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.card {
    border: 2px solid #ffc107;
    box-shadow: 0 5px 20px rgba(255,193,7,0.2);
}

.btn-warning {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-warning:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,193,7,0.5);
}

.play-button {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.1s;
}

.play-btn-img {
    max-width: 400px;
    width: 60%;
    height: auto;
}

.play-button:hover .play-btn-img {
    content: url('/static/images/playnow-click.png');
}

.play-button:active {
    transform: scale(0.98);
}

.server-status {
    padding: 30px 80px;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    display: inline-block;
    position: relative;
    min-width: 300px;
}

.frame-corner {
    position: absolute;
    height: 70%;
    width: auto;
    top: -30px;
    pointer-events: none;
    z-index: 1;
}

.frame-left {
    left: -38px;
}

.frame-right {
    right: -27px;
}

.section-divider {
    max-width: 600px;
    width: 70%;
    height: auto;
    opacity: 0.9;
    margin: 0 auto;
    display: block;
}

.table-dark {
    background-color: rgba(0,0,0,0.3);
}

footer {
    border-top: 2px solid #ffc107;
}
