/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f1e 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    margin-bottom: 30px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 140, 66, 0.9));
    }
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    letter-spacing: 2px;
}

.nav-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-button:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 140, 66, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-button.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    border-color: transparent;
    color: #0a0a0a;
}

.login-button {
    background: rgba(145, 70, 255, 0.2) !important;
    border-color: rgba(145, 70, 255, 0.5) !important;
}

.login-button:hover {
    background: rgba(145, 70, 255, 0.3) !important;
    border-color: rgba(145, 70, 255, 0.7) !important;
}

.twitch-icon-small {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.kofi-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 94, 94, 0.2);
    border: 1px solid rgba(255, 94, 94, 0.5);
    border-radius: 50%;
    color: #ff5e5e;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.kofi-icon-link:hover {
    background: rgba(255, 94, 94, 0.3);
    border-color: rgba(255, 94, 94, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 94, 94, 0.4);
}

.kofi-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.update-timestamp {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Info Card */
.info-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.info-card-left {
    flex-shrink: 0;
}

.info-logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
}

.info-card-right {
    flex: 1;
}

.info-title {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.info-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.live-indicator {
    color: #ff0000;
    font-size: 12px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Setup Card */
.setup-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.setup-title {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.setup-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.setup-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.setup-section-title {
    font-size: 20px;
    color: #ff6b35;
    margin-bottom: 10px;
    font-weight: 600;
}

.setup-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.code-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
}

.code-block code {
    color: #ff6b35;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    flex: 1;
    word-break: break-all;
}

.copy-button {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    color: #0a0a0a;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 12px;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.status-dot.online {
    background: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
    animation: pulse 2s infinite;
}

.status-dot.offline {
    background: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.6);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-bar {
        width: 100%;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 22px;
    }

    .info-title {
        font-size: 28px;
    }
}

