body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0e0e0e;
    color: #eaeaea;
}

header {
    background: linear-gradient(90deg, #ff2fa0, #2f80ff);
    padding: 20px;
}

header h1 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav a {
    color: white;
    margin-right: 20px;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 30px;
}

h2 {
    color: #ff2fa0;
    text-transform: uppercase;
}

.game-list {
    list-style: none;
    padding: 0;
}

.game-list li {
    background: #1a1a1a;
    margin-bottom: 10px;
    padding: 12px;
    border-left: 4px solid #ff2fa0;
}

footer {
    background: #111;
    color: #777;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
	
}.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #ff2fa0;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(20%);
    transition: 0.3s;
}

.gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.news-box {
    background: #1b1b1b;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #2f80ff;
}

@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
    }
}

a {
    transition: 0.2s;
}

a:hover {
    color: #2f80ff;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ff2fa0;
    margin-top: 8px;
}

:root {
    --bg: #0e0e0e;
    --text: #eaeaea;
    --card: #1a1a1a;
    --accent: #ff2fa0;
    --accent2: #2f80ff;
}

body.light {
    --bg: #f4f4f4;
    --text: #111;
    --card: #ffffff;
}

body {
    background: var(--bg);
    color: var(--text);
}

#themeToggle {
    position: fixed;
    top: 15px;
    right: 15px;
    background: var(--accent);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: white;
    font-size: 16px;
}

.members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 15px;
}

.member-card {
    background: var(--card);
    padding: 15px;
    border-left: 4px solid var(--accent);
}
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 15px;
}

.team-card {
    background: var(--card);
    padding: 15px;
    border-left: 4px solid var(--accent);
}
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    text-transform: uppercase;
    line-height: 1;
    animation: slideIn 1s ease-out forwards;
}

.hero-title span {
    color: var(--accent);
}

.hero-title small {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--accent2);
}

.hero-sub {
    margin-top: 20px;
    font-size: 1.2rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes slideIn {
    from { transform: translateX(-40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
}

.btn.primary {
    background: var(--accent);
    color: white;
}

.btn.ghost {
    border: 2px solid var(--accent2);
    color: var(--accent2);
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
.about {
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.about h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about .lead {
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: 40px;
    color: var(--accent2);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.about-card {
    background: var(--card);
    padding: 20px;
    border-left: 5px solid var(--accent);
}

.about-card h2 {
    margin-bottom: 10px;
}

.about-cta {
    margin-top: 50px;
    text-align: center;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.widget-card {
    background: var(--card);
    padding: 22px;
    border-left: 5px solid var(--accent);
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}

.widget-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(255,47,160,.25);
}

/* ACTIVE / HIGHLIGHT */
.widget-card.active {
    box-shadow: 0 0 40px rgba(47,128,255,.4);
    border-left-color: var(--accent2);
}

/* BADGE */
.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent2);
    color: #fff;
    padding: 4px 8px;
    font-size: .75rem;
    font-weight: bold;
}

/* TEXT */
.widget-hint {
    margin-top: 10px;
    font-size: .9rem;
    opacity: .7;
}

.ts-text {
    margin: 20px 0;
}

/* BUTTON */
.ts-btn {
    display: block;
    text-align: center;
}
.stat {
    margin-top: 30px;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent);
}.online {
    margin-top: 10px;
    font-size: 1rem;
    opacity: .8;
}
.random-quote {
    margin-top: 15px;
    font-style: italic;
    opacity: .75;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
}
.stat-label {
    font-size: .9rem;
    opacity: .7;
}.stats-bar {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: var(--card);
    padding: 15px 20px;
    min-width: 140px;
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

.stat-box span {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
}

.stat-box small {
    font-size: .75rem;
    opacity: .7;
}
.stat-box.hot {
    box-shadow: 0 0 20px rgba(0,255,120,.6);
    border-bottom-color: #00ff78;
}
@media (max-width: 600px) {
    .stats-bar {
        flex-direction: column;
    }
    .stat-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.2rem;
    }
    .stat-box small {
        font-size: .8rem;
    }
}