:root {
    --bg-dark: #060606;
    --card-bg: #0a0a0a;
    --neon-red: #ff0033;
    --neon-red-glow: rgba(255, 0, 51, 0.6);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-gray: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    caret-color: transparent;
}

html {
    scroll-behavior: auto !important;
    overflow-x: hidden;
}

.bg-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/background.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: -2;
}

body {
    background-color: rgba(6, 6, 6, 0.85);
    background-image:
        linear-gradient(rgba(255, 0, 51, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 51, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;

    color: var(--text-white);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 40px;
    background-size: 30px 30px;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-name-seal {
    max-width: 250px; 
    height: auto;
    margin-bottom: 60px;
    
    
    filter: drop-shadow(0 0 10px var(--neon-red)); 
    
    transition: transform 0.3s ease;
}

.header-name-seal:hover {
    transform: scale(1.05); 
}


.main-logo {
    max-width: 130px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px var(--neon-red-glow));
    transition: transform 0.3s ease;
}



footer {
    margin-top: 60px;
    padding: 20px 0; 
    border-top: 1px solid rgba(255, 0, 51, 0.1);
}


.footer-container {
    max-width: 1200px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 0 40px; 
}

.copyright-text {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

.verified-seal {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-seal img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    filter: drop-shadow(0 0 5px rgba(255, 0, 51, 0.2)); 
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 10px; 
        text-align: center; 
        padding: 0 20px; 
    }

    .verified-seal {
        width: 80px;
        height: auto;
    }
}

.btn-discord-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border: 1px solid var(--bg-dark);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.1);
    margin-bottom: 40px;
    filter: drop-shadow(0 0 8px var(--neon-red));
}

.btn-discord-header:hover {
    background: var(--neon-red);
    box-shadow: 0 0 25px var(--neon-red-glow);
    transform: translateY(-3px);
}

.btn-discord-header svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.4rem;
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red-glow);
}

.section-kick .section-title {
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red-glow);
}

.streamer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    border: 1px solid var(--border-gray);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: fit-content;
}

.card::before,
.card::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-red);
    opacity: 0.3;
    transition: 0.3s;
}

.card::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

.card::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

.card.platform-kick::before,
.card.platform-kick::after {
    border-color: var(--neon-red);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-red);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.2);
}

.card.platform-kick:hover {
    border-color: var(--neon-red);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.2);
}

.card.is-live {
    border-color: var(--neon-red);
    box-shadow: 0 0 20px var(--neon-red-glow);
}

.card.platform-kick.is-live {
    border-color: var(--neon-red);
    box-shadow: 0 0 20px var(--neon-red-glow);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar-container {
    position: relative;
    width: 65px;
    height: 65px;
    margin-right: 15px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--text-white);
    object-fit: cover;
    background: #222;
}

.card.is-live .avatar {
    border-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}

.card.platform-kick.is-live .avatar {
    border-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}

.streamer-info h2 {
    font-size: 1.2rem;
    margin: 0;
    text-transform: lowercase;
    font-weight: 800;
}

.platform {
    font-size: 0.7rem;
    color: var(--neon-red);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.platform-kick-tag {
    color: var(--neon-red);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #222;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.status-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #444;
    border-radius: 50%;
    margin-right: 8px;
}

.card.is-live .status-badge {
    color: var(--neon-red);
    border-color: var(--neon-red);
}

.card.is-live .status-badge::before {
    background-color: var(--neon-red);
    box-shadow: 0 0 8px var(--neon-red);
    animation: pulse 1.5s infinite;
}

.card.platform-kick.is-live .status-badge {
    color: var(--neon-red);
    border-color: var(--neon-red);
}

.card.platform-kick.is-live .status-badge::before {
    background-color: var(--neon-red);
    box-shadow: 0 0 8px var(--neon-red);
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.btn-action {
    background: linear-gradient(135deg, var(--neon-red), #990022);
    color: var(--bg-dark);
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.card.platform-kick.is-live .btn-action {
    background: linear-gradient(135deg, var(--neon-red), #ff0033);
}


.card-extra {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}


.card:hover .card-extra {
    max-height: 120px;
    opacity: 1;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 0, 51, 0.2);
    padding-top: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.social-icon svg {
    width: 20px;
    fill: var(--text-gray);
    transition: 0.3s;
}

.social-icon:hover svg {
    fill: var(--neon-red);
}

footer {
    margin-top: 60px;
    padding: 30px 0;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 0, 51, 0.1);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}


::-webkit-scrollbar-track {
    background: var(--bg-dark);
}


::-webkit-scrollbar-thumb {
    background: #222222;
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}


::-webkit-scrollbar-thumb:hover {
    background: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red-glow);
}


* {
    scrollbar-width: thin;
    scrollbar-color: #ff0000 var(--bg-dark);
}