* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1e1e1e;
    color: #ddd;
    line-height: 1.6;
    padding: 20px;
}

a {
    display: block;
    width: 100%;
    padding: 8px 16px;
    background-color: #444;
    color: #1abc9c;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}

a:hover {
    background-color: #555;
    color: #16a085;
    border-color: #1abc9c;
}

a:focus {
    outline: none;
    box-shadow: 0 0 5px 2px rgba(26, 188, 156, 0.7);
}

.live-now {
    border: 1px solid #9ac54ad2;
    background: linear-gradient(45deg, rgba(205, 255, 87, 0.3) 10%, transparent 80%);
    box-shadow: 0 0 15px rgba(177, 255, 87, 0.6);
    animation: neon-border 1.5s infinite alternate;
}

.live-now h2,
.live-now h3 {
    color: #b1ff57;
}

.live-now a {
    color: #b1ff57;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.live-now a:hover {
    color: #fff;
    background-color: rgba(196, 255, 87, 0.11);
    border-color: rgba(196, 255, 87, 0.7);
}

@keyframes neon-border {
    0% {
        border-color: #ccff6dd2;
        box-shadow: 0 0 15px rgba(196, 255, 87, 0.6);
    }

    50% {
        border-color: #bde65d;
        box-shadow: 0 0 25px rgba(205, 255, 87, 0.6);
    }

    100% {
        border-color: #9ec462;
        box-shadow: 0 0 15px rgba(196, 255, 87, 0.6);
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    align-content: center;
    flex-wrap: no-wrap;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    justify-content: space-between;
}

.card,
.info-card {
    background-color: #2e2e2e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.info-card {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(173, 216, 230, 0.5);
    background-clip: padding-box;
    transition: all 0.2s ease-in-out;
    flex: 1 1 calc(50% - 20px);
}

.info-card p {
    align-items: center;
    justify-content: space-between;
    gap: 1.5em;
    margin-bottom: 1em;
    color: rgba(235, 235, 235, 0.8);
    font-size: 1.1em;
    line-height: 1.4;
    font-weight: 400;
    text-align: left;
    text-shadow: 0 0 5px rgba(173, 216, 230, 0.3);
    transition: all 0.2s ease-in-out;
}

.info-card h2,
.info-card h3 {
    color: rgba(173, 216, 230, 0.7);
}

.info-card:hover {
    border-color: rgba(173, 216, 230, 0.7);
    box-shadow: 0 0 15px rgba(173, 216, 230, 0.3);
}

.info-card a {
    color: rgba(173, 216, 230, 0.7);
    text-decoration: none;
    font-weight: bold;
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: #fff;
    background-color: rgba(173, 216, 230, 0.2);
    border-color: rgba(173, 216, 230, 0.7);
}

h2,
h3 {
    color: #1abc9c;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding-left: 10px;
}

ul li {
    margin-bottom: 0;
}

pre {
    display: inline-block;
    background-color: #444;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #ff5555;
    user-select: text;
}

@media (max-width: 768px) {
    .info-card {
        flex: 1 1 100%;
    }
    
    .info-card p {
        flex-direction: column !important;
        gap: 0.5em !important;
    }
    
    .info-card p:last-of-type {
        margin-bottom: 0 !important;
    }

}