:root {
    --bg-color: #1a1a1a;
    --card-bg: #222222;
    --text-primary: #888888;
    --text-white: #ffffff;
    --accent-green: #2ecc71;
    --highlight-color: #2ecc71;
    --button-bg: #2a2a2a;
    --button-border: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
}

.page-title {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.intro-description {
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.intro-description strong {
    color: var(--text-white);
    font-weight: 600;
}

.content-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-bottom: 2rem;
    transform: translateX(200px);
}

.bookmark-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stream-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--button-bg);
    border: 1px solid var(--button-border);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-white);
    transition: background-color 0.2s, transform 0.1s;
}

.stream-link:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.link-text {
    font-weight: 500;
    font-size: 1.1rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--highlight-color);
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* SEO Content Styles */
.seo-content {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--text-primary);
}

.seo-article {
    margin-bottom: 3rem;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--button-border);
}

.seo-title {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--button-border);
    padding-bottom: 1rem;
}

.seo-subtitle {
    color: var(--text-white);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.seo-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.seo-text strong {
    color: var(--text-white);
}

.seo-list {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.seo-list li {
    margin-bottom: 0.5rem;
}

/* Discord Button Styles */
.discord-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #5865F2;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discord-btn:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
}

@media (max-width: 600px) {
    .discord-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        top: 15px;
        right: 15px;
    }
    .content-card {
        transform: translateX(0);
    }
}

/* Footer Styles */
.site-footer {
    width: 100%;
    background-color: var(--card-bg);
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid var(--button-border);
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.footer-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-link:hover {
    text-decoration: underline;
}
