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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    color: #fff;
}

/* Hero section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 6rem;
    min-height: 80vh;
    background: radial-gradient(circle at 20% 30%, rgba(229,57,53,0.2), transparent);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #FFD966, #E53935);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-play {
    display: inline-block;
    background: linear-gradient(45deg, #E53935, #FF8A65);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.features div {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
}

.features div i {
    margin-right: 8px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mockup-board {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #F5F5DC, #D2B48C);
    border-radius: 30px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.4);
    position: relative;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.howto {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    padding: 3rem 2rem;
    text-align: center;
}

.howto h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.steps div {
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.8rem;
    border-radius: 60px;
    font-size: 1rem;
}

.cta {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.cta a {
    color: #FFD966;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: #111;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .features {
        justify-content: center;
    }
    .steps div {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* ========== STILET PËR FAQEN E LOJËS ========== */
/* Profile & Coins Panel */
#profile-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
}

.profile-card {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.profile-card i {
    font-size: 1.4rem;
}

#profile-name {
    font-size: 1rem;
}

#edit-name-btn {
    background: none;
    border: none;
    color: #FFD966;
    cursor: pointer;
    font-size: 0.9rem;
}

.coins-display {
    background: #FFD700;
    color: #1e1e1e;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: bold;
}

.btn-market {
    background: linear-gradient(45deg, #E53935, #FF8A65);
    border: none;
    padding: 6px 14px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.1s;
}

.btn-market:hover {
    transform: scale(1.03);
}

/* Market Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1e1e2f;
    padding: 30px;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    color: white;
    text-align: center;
    position: relative;
}

.modal-content .close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
}

.shop-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buy-btn {
    background: #4CAF50;
    border: none;
    padding: 6px 15px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
}

.note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* Përshtatje për pajisjet mobile */
@media (max-width: 768px) {
    #profile-panel {
        top: 10px;
        right: 10px;
    }
    .profile-card {
        padding: 5px 12px;
        gap: 8px;
    }
    .coins-display {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
    .btn-market {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
}
