:root {
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --primary: #c8aa6e; /* LoL Gold */
    --secondary: #0397ab; /* Hextech Blue */
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

a { text-decoration: none; color: inherit; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.nav-links a {
    margin-left: 2rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--primary); }
.sponsor-link { 
    color: #00bfff !important; /* Γαλάζιο Χρώμα */
    font-weight: 700; /* Λίγο πιο έντονο */
}

/* Προαιρετικά: Αν θες να γίνεται πιο φωτεινό όταν περνάς το ποντίκι */
.sponsor-link:hover {
    color: #66b3ff !important; 
    text-shadow: 0 0 10px rgba(51, 153, 255, 0.5);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(200, 170, 110, 0.4); }

.btn-large {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.discord-btn { background: #5865F2; color: white; }
.discord-btn:hover { background: #4752c4; }

.outline-btn { border: 2px solid var(--text-muted); color: var(--text-main); }
.outline-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background: radial-gradient(circle at top right, #1e293b 0%, #09090b 60%);
    padding-top: 80px;
}

.hero-content { max-width: 600px; }

.badge {
    background: rgba(3, 151, 171, 0.2);
    color: var(--secondary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin: 1rem 0;
}

.highlight { color: var(--primary); }

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons { display: flex; gap: 1rem; }

.hero-image {
    position: relative;
    font-size: 15rem;
    color: rgba(255,255,255,0.05);
}

/* Features */
.features { padding: 5rem 10%; background: #0c0c0e; text-align: center; }
.features h2 { font-size: 2.5rem; margin-bottom: 3rem; color: var(--primary); }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.card i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.card p { color: var(--text-muted); }

/* Commands */
.commands-section { padding: 5rem 10%; }
.commands-section h2 { text-align: center; font-size: 2.5rem; color: var(--primary); }
.subtitle { text-align: center; color: var(--text-muted); margin-bottom: 3rem; }

.command-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.cmd-category h3 { margin-bottom: 1rem; color: var(--secondary); border-bottom: 1px solid #333; padding-bottom: 0.5rem; }

/* --- Accordion Command Styles --- */

.cmd-item {
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden; /* Κρύβει το περιεχόμενο όταν είναι κλειστό */
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.cmd-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Header (Αυτό που φαίνεται πάντα) */
.cmd-header {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: rgba(255,255,255,0.02);
}

.cmd-header:hover {
    background: rgba(255,255,255,0.05);
}

.cmd-header code {
    background: rgba(0,0,0,0.3);
    padding: 5px 10px;
    border-radius: 4px;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    font-weight: 700;
    min-width: 120px; /* Για στοίχιση */
}

.short-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-grow: 1;
    margin-left: 1rem;
}

.arrow {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

/* Όταν είναι active, γυρνάει το βέλος */
.cmd-item.active .arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Body (Το κρυφό περιεχόμενο) */
.cmd-body {
    max-height: 0; /* Κλειστό από default */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #131315;
}

.cmd-content {
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.usage-box {
    background: #09090b;
    padding: 10px;
    border-radius: 4px;
    border-left: 3px solid var(--secondary);
    margin: 10px 0;
    font-family: monospace;
    font-size: 0.9rem;
}

.usage-box .label {
    color: var(--secondary);
    font-weight: bold;
    margin-right: 5px;
}

.code-example { color: #fff; }

.btn-copy {
    margin-top: 10px;
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.2s;
}

.btn-copy:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333;
    color: var(--text-muted);
}

.powered-by a { color: var(--primary); font-weight: 700; }

/* Toast Notification */
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--secondary);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
}

#toast.show { visibility: visible; animation: fadein 0.5s, fadeout 0.5s 2.5s; }

@keyframes fadein { from {bottom: 0; opacity: 0;} to {bottom: 30px; opacity: 1;} }
@keyframes fadeout { from {bottom: 30px; opacity: 1;} to {bottom: 0; opacity: 0;} }

/* Mobile */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; justify-content: center; }
    .hero h1 { font-size: 3rem; }
    .hero-buttons { justify-content: center; }
    .nav-links { display: none; } /* Simplified mobile nav */
}

/* --- How It Works Section --- */
.how-it-works {
    padding: 5rem 10%;
    background: #101012; /* Ελαφρώς διαφορετικό από το Features για contrast */
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-header { margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; }
.section-header p { color: var(--text-muted); }

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    width: 300px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.step:hover { transform: translateY(-5px); border-color: var(--secondary); }

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(3, 151, 171, 0.5);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.step h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

.step code {
    background: rgba(255,255,255,0.1);
    padding: 2px 5px;
    border-radius: 4px;
    color: var(--primary);
}

.highlight-text {
    color: #ef4444; /* Κόκκινο για το "not" */
    font-weight: 700;
    text-decoration: underline;
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-muted);
    opacity: 0.3;
}

/* Mobile Responsiveness for Steps */
@media (max-width: 900px) {
    .steps-container { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: -10px 0; }
    .step { width: 100%; }
}

/* --- Note Box Style --- */
.note-box {
    display: flex;
    align-items: start;
    gap: 10px;
    background: rgba(234, 179, 8, 0.1); /* Διακριτικό κίτρινο φόντο */
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #fef08a; /* Ανοιχτό κίτρινο κείμενο */
}

.note-box i {
    color: #eab308; /* Έντονο κίτρινο εικονίδιο */
    margin-top: 3px; /* Ευθυγράμμιση με το κείμενο */
}

.note-box strong {
    color: #fff;
}

/* --- Server Counter Style --- */
.server-counter {
    margin-bottom: 2rem; /* Κενό από τα κουμπιά */
    margin-top: -1rem;   /* Να πλησιάσει λίγο το κείμενο */
    font-size: 1.1rem;
    color: var(--secondary); /* Το γαλάζιο χρώμα μας */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(3, 151, 171, 0.1); /* Ελαφρύ φόντο */
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(3, 151, 171, 0.3);
    width: fit-content;
}

/* Η πράσινη τελίτσα */
.live-dot {
    width: 10px;
    height: 10px;
    background-color: #22c55e; /* Πράσινο */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s infinite;
}

/* Το εφέ που αναβοσβήνει */
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Για κινητά */
@media (max-width: 768px) {
    .server-counter { margin: 0 auto 2rem auto; }
}