
.landing {
    font-family: 'Trebuchet MS', sans-serif;
    background: linear-gradient(135deg, #5fd0ff, #ff80df);
    padding-bottom: 80px;
}
.hero {
    padding: 100px 8%;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

/* ===== Maddox if u see this can u help me with the administrator panel? thx - Dylan.B ===== */
.hero-preview {
    flex: 1;
    display: flex;
    justify-content: center;
}

.preview-box {
    background: white;
    border-radius: 18px;
    padding: 20px;
    width: 340px;
    box-shadow: 0 10px 0 rgba(0,0,0,0.15);
}

.preview-header {
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.player-row {
    display: flex;
    align-items: center;
    background: #f3faff;
    padding: 10px 14px;
    border-radius: 10px;
    transition: 0.2s ease;
}

.player-row:hover {
    background: #e0f4ff;
}

.player-avatar {
    width: 28px;
    height: 28px;
    background: #ffcc00;
    border-radius: 6px;
    margin-right: 10px;
}

.player-name {
    font-weight: bold;
}

.no-users {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

.online-count {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    color: #666;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin-right: 10px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.15s ease;
}

.primary {
    background: #ffcc00;
    color: black;
    box-shadow: 0 5px 0 #c9a000;
}

.primary:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #c9a000;
}

.secondary {
    background: white;
    border: 3px solid black;
    color: black;
}

.large {
    font-size: 1.2rem;
}
.features {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #bf4747;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 0 rgba(0,0,0,0.15);
    transition: 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.cta {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 900px) {

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-preview {
        display: none;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {

    .features {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 20px;
    }

    .btn {
        width: 100%;
        margin: 8px 0;
    }
}
