/* Custom Black Theme with Slightly Lighter Background */

body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


header {
    background-color: #1a1a1a;
    padding: 10px;
    text-align: center;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h2 {
    color: #227bb7;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

main {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content-box {
    background-color: #1e1e1e;
    padding: 20px;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
}

.content-main-title {
    font-size: 25px;
    font-weight: bold;
    color: #227bb7;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
}

.stream-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.stream-box {
    background-color: #2b2b2b;
    padding: 10px;
    margin: 5px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    width: 100%;
    max-width: 610px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, #282828, #202020);
    height: auto;
}

.stream-box:hover {
    transform: translateY(-3px);
    background-color: #2b2b2b;
}

.stream-left {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.stream-right {
    color: #22c55e;
    font-weight: bold;
    font-size: 14px;
}

h1,
h2,
h3 {
    color: #227bb7;
}


footer {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    color: #ffffff;
}