﻿* {
    box-sizing: border-box;
    font-family: Inter, system-ui, sans-serif;
}

body {
    margin: 0;
    background: radial-gradient(1200px 600px at top, #111827, #020617);
    color: #e5e7eb;
}

/* TOPBAR */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(2,6,23,.75);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 22px;
    font-weight: 900;
}

    .logo span {
        color: #f5a524;
    }

.topbar nav a {
    margin-left: 20px;
    color: #9ca3af;
    text-decoration: none;
    font-weight: 600;
}

    .topbar nav a:hover,
    .topbar nav a.active {
        color: #fff;
    }

/* HERO */
.hero {
    position: relative;
    height: 70vh;
    max-height: 720px;
    background: url("../img/logo-home-page-1024x912.png") center/110% no-repeat;
    animation: hero-pan 20s ease-in-out infinite;
    display: flex;
    align-items: center;
}

@keyframes hero-pan {
    0% {
        background-position: 50% 50%;
    }

    50% {
        background-position: 55% 45%;
    }

    100% {
        background-position: 50% 50%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,6,23,.95), rgba(2,6,23,.55));
}

.hero-content {
    position: relative;
    padding: 60px;
    max-width: 720px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
}

    .hero h1 span {
        color: #f5a524;
    }

.hero p {
    color: #cbd5f5;
    line-height: 1.6;
    margin: 16px 0 26px;
}

/* SOCIALS */
.socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.soc {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.twitch {
    background: #9146ff;
}

.discord {
    background: #5865f2;
}

.insta {
    background: #e1306c;
}

.yt {
    background: #ff0000;
}

.fb {
    background: #1877f2;
}

.tt {
    background: #000;
}

/* SECTION */
.home-section {
    padding: 90px 20px;
    display: flex;
    justify-content: center;
}

.home-card {
    max-width: 900px;
    width: 100%;
    background: linear-gradient(180deg, #0f172a, #020617);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,.7);
}

/* LIQUID STATS */
.stats-liquid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

@media (max-width: 900px) {
    .stats-liquid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.liquid-card {
    position: relative;
    height: 170px;
    border-radius: 22px;
    background: radial-gradient(circle at top, #0f172a, #020617);
    box-shadow: inset 0 0 0 1px rgba(96,165,250,.2), 0 25px 60px rgba(0,0,0,.7);
    overflow: hidden;
}

/* LIQUID */
.liquid {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    animation: fill 2.2s ease-out forwards;
}

/* GRADIENTS */
[data-color="gold"] .liquid {
    background: linear-gradient(180deg,#ffd966,#fbbf24,#f59e0b,#b45309);
}

[data-color="amber"] .liquid {
    background: linear-gradient(180deg,#ffe29a,#fbbf24,#f59e0b,#92400e);
}

[data-color="orange"] .liquid {
    background: linear-gradient(180deg,#ffd6a5,#fb923c,#f97316,#9a3412);
}

[data-color="deep"] .liquid {
    background: linear-gradient(180deg,#fff3a3,#fde047,#facc15,#ca8a04);
}

/* WAVE */
.liquid::before,
.liquid::after {
    content: "";
    position: absolute;
    top: -18px;
    width: 200%;
    height: 40px;
    background: rgba(255,200,80,.25);
    border-radius: 45%;
    animation: wave 4s linear infinite;
}

.liquid::after {
    animation-delay: -2s;
    opacity: .2;
}

/* PERCENT */
.liquid-percent {
    position: absolute;
    right: 14px;
    top: 14px;
    font-size: 18px;
    font-weight: 900;
    color: #020617;
    background: rgba(255,215,100,.9);
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0,0,0,.4);
}

/* LABEL */
.stat-name {
    position: absolute;
    bottom: 12px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #000080;
}

/* ANIMATIONS */
@keyframes fill {
    to {
        height: var(--fill);
    }
}

@keyframes wave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* FOOTER */
.footer {
    padding: 40px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
}

/* ===== WELCOME / MISSION ===== */

.home-card.soft {
    background: linear-gradient(180deg, #0b1220, #020617);
}

.home-card .lead {
    font-size: 16px;
    color: #cbd5f5;
    line-height: 1.7;
    margin-bottom: 28px;
}

.home-card h3 {
    margin-top: 36px;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 900;
    color: #f5a524;
}

/* REASONS GRID */
.reasons-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 800px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

.reason-card {
    background: radial-gradient(circle at top, #0f172a, #020617);
    border-radius: 18px;
    padding: 22px;
    box-shadow: inset 0 0 0 1px rgba(96,165,250,.2), 0 20px 40px rgba(0,0,0,.6);
}

    .reason-card h4 {
        margin: 0 0 8px;
        font-size: 16px;
        font-weight: 900;
        color: #60a5fa;
    }

    .reason-card p {
        margin: 0;
        font-size: 14px;
        color: #cbd5f5;
        line-height: 1.6;
    }

/* CLOSING TEXT */
.closing {
    margin-top: 36px;
    font-size: 15px;
    color: #e5e7eb;
    line-height: 1.7;
    text-align: center;
}

.music-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.music-btn {
    background: rgba(255, 191, 0, 0.8); /* Χρυσό/Amber χρώμα όπως το theme σου */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-size: 24px;
    transition: transform 0.3s ease;
}

    .music-btn:hover {
        transform: scale(1.1);
    }

/* Animation για όταν παίζει η μουσική */
.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 191, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 191, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 191, 0, 0);
    }
}