@font-face {
    font-family: 'Lexend';
    src: url('/assets/fonts/Lexend-Regular.woff2') format('woff2'),
        url('/assets/fonts/Lexend-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Regular.woff2') format('woff2'),
        url('/assets/fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('/assets/fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #F24518;
    --primary-dark: #c0300a;
    --primary-glow: rgba(242, 69, 24, 0.6);
    --secondary: #ffc107;
    --bg-dark: #0a0a0f;
    --glass-bg: rgba(22, 22, 26, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --kick-color: #53fc18;
    --youtube-color: #ff0000;
    --insta-color: #C13584;
    --discord-color: #5865F2;
    --font-head: 'Lexend', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tiktok-cyan: #00f2ea;
    --tiktok-pink: #ff0050;
    --tiktok-glow: rgba(0, 242, 234, 0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../media/tło.webp');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -2;
    filter: brightness(0.7);
}

.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 120%);
    pointer-events: none;
    z-index: -1;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0f0f0f; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.text-primary { color: var(--primary); }
.white { color: white; }

.main-header {
    position: sticky;
    top: 20px;
    margin: 0 auto;
    width: 95%;
    max-width: 1400px;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-color: rgba(242, 69, 24, 0.3);
    transition: var(--transition);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.avatar-link:hover .avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px var(--primary-glow);
}

.brand-info h1 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-nav {
    display: flex;
    gap: 15px;
}

.social-nav img {
    width: 24px;
    height: 24px;
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.7;
}

.social-nav a:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px) scale(1.2);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary), #ff6b3d);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.content-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
}

.hero-section {
    text-align: center;
    margin: 40px 0;
}

.welcome-box {
    display: inline-block;
    padding: 20px 40px;
    border: none !important;
    background: rgba(0,0,0,0.6);
    border-radius: var(--radius-md);
    box-shadow: none !important;
    width: fit-content; 
    min-width: min(300px, 90vw); 
    margin: 0 auto;
}

.welcome-text {
    font-family: var(--font-head);
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid rgb(255, 255, 255);
    width: 0; 
    font-size: clamp(1.2rem, 3vw, 3.5rem); 
    animation: 
        typing 3s steps(40, end) forwards, 
        blink 0.75s step-end infinite,
        stop-blink 0s linear 3s forwards;
    display: block;
    box-sizing: content-box;
    color: rgb(255, 255, 255);
    text-align: left;
    padding-right: 5px;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary); }
}

@keyframes stop-blink {
    to { border-right-color: transparent; }
}

.welcome-text .highlight {
    color: var(--primary);
    font-style: italic;
    text-shadow: 0 0 10px var(--primary-glow);
}

.hero-subtext {
    font-size: clamp(0.9rem, 1.2vw, 1.5rem);
    color: var(--text-muted);
}

.schedule-table-container {
    padding: 30px;
    background: rgba(15, 15, 20, 0.6);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    overflow-x: auto;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #0f0f0f;
}

.schedule-table-container::-webkit-scrollbar {
    height: 8px;
}
.schedule-table-container::-webkit-scrollbar-track {
    background: #0f0f0f;
    border-radius: 4px;
}
.schedule-table-container::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
}

.schedule-title {
    color: var(--primary);
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(242, 69, 24, 0.4);
}

.week-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    width: 100%;
    flex-wrap: wrap;
}

.week-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.week-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.week-range {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 10px;
}

.schedule-table th {
    background: linear-gradient(180deg, var(--primary) 0%, rgba(192, 48, 10, 0.8) 100%);
    color: white;
    padding: 15px 10px;
    border-radius: 0;
    border-bottom: 3px solid var(--primary-dark);
    border-right: 1px solid rgba(0, 0, 0, 0.2); 
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.schedule-table th:first-child { border-top-left-radius: 12px; border-left: none; }
.schedule-table th:last-child { border-top-right-radius: 12px; border-right: none; }

.schedule-table th .th-day {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.schedule-table th .th-date {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 3px;
}

.schedule-table td {
    background: rgba(30, 30, 35, 0.6);
    padding: 15px 10px;
    vertical-align: top;
    border-right: 1px solid rgba(255, 255, 255, 0.05); 
    background-clip: border-box; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-left: none;
}

.schedule-table td:last-child { border-right: none; }
.schedule-table tbody tr:last-child td:first-child { border-bottom-left-radius: 12px; }
.schedule-table tbody tr:last-child td:last-child { border-bottom-right-radius: 12px; }

.schedule-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.schedule-item.empty {
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    align-items: center;
    border-color: rgba(255, 255, 255, 0.05);
}

.schedule-item.empty:hover { transform: none; box-shadow: none; }

.schedule-item .day-label {
    display: block;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 6px;
    font-family: var(--font-head);
}

.schedule-item .title {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.4;
    font-weight: 500;
}

.schedule-item a {
    display: inline-block;
    margin-top: auto;
    padding-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.schedule-item a:hover {
    color: var(--primary);
    text-shadow: 0 0 5px var(--primary-glow);
}

.mobile-day-head {
    display: none;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .sponsor-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.sponsor-card {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.05);
    background: rgba(30, 30, 35, 0.6); 
    height: 100%;
    justify-content: space-between;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.sponsor-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.2), inset 0 0 20px rgba(255, 193, 7, 0.05);
}

.sponsor-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
    transition: var(--transition);
    flex-shrink: 0;
}

.sponsor-card:hover .sponsor-logo {
    border-color: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

.sponsor-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.sponsor-details h3 {
    color: var(--secondary);
    font-family: var(--font-head);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.sponsor-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.code {
    background: rgba(255, 193, 7, 0.1);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px dashed var(--secondary);
    font-weight: bold;
    letter-spacing: 1px;
    font-family: var(--font-head);
    transition: var(--transition);
    align-self: center;
    margin-top: auto;
}

.sponsor-card:hover .code {
    background: var(--secondary);
    color: black;
}

.kick-section {
    padding: 5px;
    border: 1px solid var(--kick-color);
    box-shadow: 0 0 20px rgba(83, 252, 24, 0.1);
    overflow: hidden;
    border-radius: var(--radius-md);
}

.kick-header {
    background: rgba(0,0,0,0.3);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 10px;
}

#kick-stream-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px; 
    display: none; 
}

.kick-header h2 { font-size: 1.2rem; font-family: var(--font-head); }

.live-indicator {
    background: #ff0000;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.live-indicator .dot {
    width: 8px; height: 8px; background: white; border-radius: 50%;
    animation: blink-live 1s infinite;
}
@keyframes blink-live { 50% { opacity: 0; } }

.kick-layout {
    display: flex;
    flex-wrap: wrap;
    height: 600px;
    width: 100%;
}

.kick-video-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    background: #000;
    height: 100%;
}

.video-container {
    flex-grow: 1;
    position: relative;
    width: 100%;
}
.video-container iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: none;
}

.kick-meta {
    padding: 15px;
    background: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.kick-action-btn {
    background: var(--kick-color);
    color: black;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.kick-chat-wrapper {
    width: 350px;
    border-left: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    flex-shrink: 0;
}
.kick-chat-wrapper iframe { width: 100%; height: 100%; border: none; }

.latest-content {
    text-align: center;
}
.section-title {
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 10px;
}

.posts-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.youtube-col, .instagram-col {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.youtube-col { gap: 20px; }

.platform-title {
    margin-bottom: 20px;
    font-family: var(--font-head);
    text-transform: uppercase;
}
.platform-title.yt { color: var(--youtube-color); }
.platform-title.insta { color: var(--insta-color); }

.media-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(25, 25, 25, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 2px solid transparent;
}

.youtube-col .media-card {
    border-color: var(--youtube-color);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-col .media-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6), inset 0 0 15px rgba(255, 0, 0, 0.4);
    border-color: #ff4d4d;
}

.instagram-col .media-card {
    flex-grow: 1;
    border-color: var(--insta-color);
    box-shadow: 0 4px 15px rgba(193, 53, 132, 0.3);
}

.instagram-col .media-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 10px 30px rgba(193, 53, 132, 0.6), inset 0 0 15px rgba(193, 53, 132, 0.4);
    border-color: #ff66cc;
}

.thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.instagram-col .media-card .thumb-wrapper {
    aspect-ratio: unset;
    flex-grow: 1;
    height: 100%;
    min-height: 400px;
}

.thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.media-card:hover img { transform: scale(1.1); }

.play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px;
    opacity: 0; transition: var(--transition);
}
.media-card:hover .play-icon { opacity: 1; }

.media-info {
    padding: 15px;
    background: rgba(0,0,0,0.4);
    color: var(--text-main);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.info-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.info-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    min-height: 280px;
    box-sizing: border-box;
    background: rgba(10, 10, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    backdrop-filter: blur(10px);
}

#about-me {
    border-color: var(--primary);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#about-me:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px var(--primary-glow);
    background: rgba(242, 69, 24, 0.05); 
}

#about-me:hover .fake-btn {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-glow);
    background: var(--primary);
}

#about-me .info-visual img {
    max-width: 140px;
    filter: drop-shadow(0 0 15px var(--primary-glow));
    transition: transform 0.3s ease;
}

#about-me:hover .info-visual img {
    transform: scale(1.1) rotate(2deg);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 25px;
}

.info-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.info-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.info-visual {
    width: 140px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.info-visual img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(242, 69, 24, 0.4));
}

.fake-btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 5px;
}

.fake-btn:hover {
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.05);
}

#discord {
    border-color: var(--discord-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#discord:hover {
    transform: translateY(-8px);
    border-color: var(--discord-color);
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.4);
    background: rgba(88, 101, 242, 0.05);
}

#discord:hover .fake-btn {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--discord-color);
    background: var(--discord-color);
}

#discord .info-visual img {
    max-width: 140px;
    filter: drop-shadow(0 0 15px rgba(88, 101, 242, 0.4));
    transition: transform 0.3s ease;
}

#discord:hover .info-visual img {
    transform: scale(1.1) rotate(-3deg);
}

#tiktok {
    border-color: var(--tiktok-cyan);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#tiktok:hover {
    transform: translateY(-8px);
    border-color: var(--tiktok-pink);
    box-shadow: 0 10px 40px rgba(0, 242, 234, 0.2);
    background: rgba(0, 242, 234, 0.02);
}

#tiktok:hover .fake-btn {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--tiktok-glow);
    background: linear-gradient(135deg, var(--tiktok-cyan), var(--tiktok-pink));
}

#tiktok .info-visual img {
    max-width: 140px;
    filter: drop-shadow(2px 2px 0px rgba(255, 0, 80, 0.5)) drop-shadow(-2px -2px 0px rgba(0, 242, 234, 0.5));
    transition: transform 0.4s ease;
}

#tiktok:hover .info-visual img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(4px 4px 0px var(--tiktok-pink)) drop-shadow(-4px -4px 0px var(--tiktok-cyan));
}

#kick-shop {
    border-color: var(--kick-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#kick-shop:hover {
    transform: translateY(-8px);
    border-color: var(--kick-color);
    box-shadow: 0 10px 40px rgba(83, 252, 24, 0.2);
    background: rgba(83, 252, 24, 0.05);
}

#kick-shop:hover .fake-btn {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(83, 252, 24, 0.4);
    background: var(--kick-color);
}

#kick-shop .info-visual img {
    max-width: 140px;
    filter: drop-shadow(0 0 15px rgba(83, 252, 24, 0.4));
    transition: transform 0.3s ease;
}

#kick-shop:hover .info-visual img {
    transform: scale(1.1) rotate(3deg);
}

.main-footer {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-5px);
}

#back-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    max-width: 380px;
    width: 90%;
}
.toast {
    background-color: var(--glass-bg);
    color: var(--text-main);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--primary);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(110%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    font-family: var(--font-body);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.toast.show {
    opacity: 1;
    transform: translateX(0);
}
.toast-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toast-icon img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px var(--primary));
}
.toast-message {
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.4;
    padding-right: 25px;
}
.toast-message a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.toast-message a:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--primary);
}
.toast-close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}
.toast-close-btn:hover {
    color: var(--text-main);
    transform: scale(1.2);
}
.toast.youtube { border-color: var(--youtube-color); }
.toast.youtube .toast-icon img { filter: drop-shadow(0 0 8px var(--youtube-color)); }
.toast.youtube .toast-message a { color: var(--youtube-color); }

.toast.instagram { border-color: var(--insta-color); }
.toast.instagram .toast-icon img { filter: drop-shadow(0 0 8px var(--insta-color)); }
.toast.instagram .toast-message a { color: var(--insta-color); }

.toast.discord { border-color: var(--discord-color); }
.toast.discord .toast-icon img { filter: drop-shadow(0 0 8px var(--discord-color)); }
.toast.discord .toast-message a { color: var(--discord-color); }

.toast.info { border-color: var(--secondary); }
.toast.info .toast-icon img { filter: drop-shadow(0 0 8px var(--secondary)); }
.toast.info .toast-message a { color: var(--secondary); }

@media (max-width: 992px) {
    .info-split {
        grid-template-columns: 1fr;
    }
    .kick-layout {
        height: auto;
        flex-direction: column;
    }
    .kick-video-wrapper {
        min-height: 400px;
        width: 100%;
    }
    .kick-chat-wrapper {
        width: 100%;
        height: 500px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 768px) {
    .info-card {
        flex-direction: column-reverse;
        text-align: center;
        padding: 25px;
    }
    .info-content {
        padding-right: 0;
        align-items: center;
    }
    .info-visual {
        width: 100%;
        margin-bottom: 20px;
    }
    .fake-btn {
        align-self: center;
    }
    .main-header {
        flex-direction: column;
        gap: 15px;
        padding: 20px 10px;
    }
    .brand-info h1 { font-size: 1.5rem; }
    .schedule-table-container { padding: 15px; }
    .schedule-table thead { display: none; }
    .schedule-table td {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        background: rgba(30, 30, 35, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
        padding: 20px;
    }
    .mobile-day-head {
        display: flex; 
        justify-content: space-between;
        align-items: center;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-family: var(--font-head);
        font-weight: bold;
        color: var(--primary);
    }
}

.footer-content p { font-size: 0.9rem; color: var(--text-muted); }
.credits a { color: var(--secondary); text-decoration: none; }