@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow:
      0 0 11px #fff,
      0 0 19px #fff,
      0 0 40px #0fa,
      0 0 80px #0fa,
      0 0 90px #0fa,
      0 0 100px #0fa,
      0 0 150px #0fa;
  }
  20%, 24%, 55% {       
    text-shadow: none;
  }
}
body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;    
    margin: 0;
    color: white;
    font-family: Arial, sans-serif;
}
h1 {
    font-weight: bolder;
    animation: flicker 1.5s infinite alternate;
}
.header {
    text-align: center;
}
.header a {
    color: #fff;
    text-decoration: none;
}
.header a:hover {
    color: #4A90E2;
    text-decoration: underline;
}
.header a:visited {
    color: #fff;
}
.header_menu {
    text-align: center;
    margin-bottom: 20px;
    font-size: 10px;
    font-weight: bold;
    color: #ccc;
}
.header_menu a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
}
.header_menu a:hover {
    color: #4A90E2;
    text-decoration: underline;
}
.container {
    text-align: center;
    max-width: 80%;
}
.container-large {
    text-align: center;
    width: 80%;
}
.button {
    display: block;
    margin: 10px auto;
    padding: 15px 30px;
    font-size: 20px;
    color: black;
    font-weight: bolder;
    background-color: #4A90E2;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.button:hover {
    background-color: #555;
    color: white;
}
.blurb {
            font-size: 14px;
            color: #ccc;
        }
.footer {
    background-color: #111111;
    border: 2px solid #4A90E2;
    border-radius: 5px;
    padding: 5px;
    padding-bottom: 10px;
    margin: 20px auto;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    font-style: italic;
    color: #ccc;
}
.advert_promo {
    font-size: 10px;
    font-weight: bold;
    font-style: italic;
    color: #ccc;
}
.advert_promo a {
    color: #ccc;
    text-decoration: none;
}
.advert_promo a:hover {
    color: white;
}
.advert {
    font-size: 11px;
    color: #ccc;
}
.advert a {
    color: #ccc;
    text-decoration: underline;
}
.important_info {
    font-size: 10px;
    font-weight: bold;
    color: #008000; 
}
.callout {
    background-color: #222;
    border: 2px solid #4A90E2;
    border-radius: 5px;
    padding: 5px;
    margin: 20px auto;
    font-size: 10px;
    text-align: center;
}
.callout a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: bold;
}
.sourcing {
    font-size: 14px;
    color: #ccc;
}
.radio_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.radio_table th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.radio_table th {
    background-color: #4A90E2;
    color: #000000;
}
.radio_table tr:nth-child(even) {
    background-color: #f2f2f2;
}
.radio_table tr:hover {
    background-color: #ddd;
}
.events_table {
    width: 100%;
    border: 1px, solid #ffffff;
}
.stream_table {
    width: 100%;
    border: 1px, solid #ffffff;
    font-size: 10px;
}
.stream_table th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.stream_table th {
    background-color: #4A90E2;
    color: #000000;
}
.stream_table tr:nth-child(even) {
    background-color: #191919;
}
.stream_table tr:hover {
    background-color: #1f1f1f;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    margin: 5px 0;
}
.content_section {
    max-width: 50%;
    margin: 0 auto;
}
.share {
    font-size: 12px;
    color: #ccc;
    margin-top: 20px;
}
.share button {
    background-color: #555;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}
.kick_colour {
    color: #00b900;
    font-weight: bold;
}
.kick_guestbook_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 13px;
    text-align: center;
}
.kick_guestbook_table th, .kick_guestbook_table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
.kick_guestbook_table th {
    background-color: #00b900;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}
.kick_guestbook_table tr:nth-child(even) {
    background-color: #191919;
}
.kick_guestbook_table tr:hover {
    background-color: #1f1f1f;
}
.kick_guestbook_table a {
    color: #00b900;
    text-decoration: none;
    font-weight: bold;
}
.streamer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.streamer-card-kick {
    background: #111;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
}
.streamer-card-kick:hover {
    transform: translateY(-5px);
}
.streamer-card-kick .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.streamer-card-kick a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: #39ff14; /* Kick green */
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.2s;
}
.streamer-card-kick a:hover {
    background: #2ecc71;
}
.streamer-card-twitch {
    background: #111;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
}
.streamer-card-twitch:hover {
    transform: translateY(-5px);
}
.streamer-card-twitch .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.streamer-card-twitch a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: #9146FF; /* Twitch Purple */
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.2s;
}
.streamer-card-twitch a:hover {
    background: #6f35c7;
}