:root {
    --lemon-primary: #F4D03F;
    --lemon-light: #FCF3CF;
    --lemon-soft: #FEF9E7;
    --lemon-dark: #D4AC0D;
    --lemon-accent: #F7DC6F;
    --text-dark: #5D5D5D;
    --text-light: #8B8B8B;
    --white: #FFFFFF;
    --shadow: rgba(244, 208, 63, 0.3);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.2rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 3rem;
    list-style: none;
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
    padding-right: 3rem;
}

.nav-right {
    justify-content: flex-start;
    padding-left: 3rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--lemon-dark);
    text-decoration: none;
    padding: 0 2rem;
}

.logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: -20px 0;
}

.logo span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
    color: var(--lemon-dark);
}

.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--lemon-primary);
    border-radius: 10px;
    transition: width 0.3s;
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after {
    width: 100%;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 10rem 5% 4rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--lemon-soft) 50%, var(--lemon-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--lemon-accent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.2;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--lemon-primary);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    opacity: 0.15;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--lemon-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-header h1 i {
    color: var(--lemon-primary);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lemon-primary), var(--lemon-dark));
    color: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow);
}

.btn-secondary {
    background: var(--white);
    color: var(--lemon-dark);
    border: 2px solid var(--lemon-primary);
}

.btn-secondary:hover {
    background: var(--lemon-soft);
    transform: translateY(-3px);
}

/* ==================== NEWS PAGE ==================== */
.news-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--lemon-primary);
    box-shadow: 0 20px 40px var(--shadow);
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.news-card.featured .news-image {
    min-height: 300px;
}

.news-image {
    background: linear-gradient(135deg, var(--lemon-light), var(--lemon-soft));
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-image i {
    font-size: 4rem;
    color: var(--lemon-dark);
    opacity: 0.5;
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--lemon-primary);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-meta i {
    margin-right: 0.3rem;
    color: var(--lemon-primary);
}

.news-card h2,
.news-card h3 {
    color: var(--lemon-dark);
    margin-bottom: 0.8rem;
}

.news-card h2 {
    font-size: 1.8rem;
}

.news-card h3 {
    font-size: 1.3rem;
}

.news-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--lemon-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--lemon-soft);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--lemon-primary);
    color: var(--white);
}

/* ==================== STORE PAGE ==================== */
.store-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.store-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--lemon-light);
    background: var(--white);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: var(--lemon-primary);
    border-color: var(--lemon-primary);
    color: var(--white);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.store-card {
    background: var(--white);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.store-card:hover {
    transform: translateY(-10px);
    border-color: var(--lemon-primary);
    box-shadow: 0 20px 50px var(--shadow);
}

.store-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--lemon-dark);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.store-badge.popular {
    background: #e74c3c;
}

.store-badge.best {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
}

.store-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.store-icon.vip {
    background: linear-gradient(135deg, var(--lemon-primary), var(--lemon-dark));
}

.store-icon.mvp {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.store-icon.legend {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.store-icon.key-common {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.store-icon.key-rare {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.store-icon.key-legendary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.store-icon.cosmetic {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.store-card h3 {
    color: var(--lemon-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.store-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.store-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.store-features li i {
    color: var(--lemon-primary);
    font-size: 0.9rem;
}

.store-price {
    margin-bottom: 1.5rem;
}

.store-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lemon-dark);
}

.store-price .duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

.store-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--lemon-soft);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--lemon-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--lemon-dark);
    margin-bottom: 0.3rem;
}

.info-content p {
    color: var(--text-light);
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--lemon-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--lemon-soft);
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--lemon-primary), var(--lemon-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.method-info h4 {
    color: var(--lemon-dark);
    margin-bottom: 0.2rem;
}

.method-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.method-info a {
    color: var(--lemon-dark);
    text-decoration: none;
    font-weight: 600;
}

.method-info a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.5rem;
    border: 2px solid var(--lemon-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lemon-primary);
    box-shadow: 0 0 0 4px var(--shadow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* FAQ */
.faq-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--lemon-light);
}

.faq-section h2 {
    text-align: center;
    color: var(--lemon-dark);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--lemon-soft);
    padding: 1.5rem;
    border-radius: 15px;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.faq-question i {
    color: var(--lemon-primary);
    font-size: 1.2rem;
}

.faq-question h4 {
    color: var(--lemon-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 2rem;
}

/* ==================== HOMEPAGE SECTIONS ==================== */
.latest-news,
.store-preview {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.latest-news {
    background: var(--white);
}

.store-preview {
    background: var(--lemon-soft);
}

.section-header h2 i {
    color: var(--lemon-primary);
    margin-right: 0.5rem;
}

/* News Preview */
.news-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.news-preview-card {
    background: var(--lemon-soft);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.news-preview-card:hover {
    transform: translateY(-5px);
    border-color: var(--lemon-primary);
    box-shadow: 0 15px 40px var(--shadow);
}

.news-preview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--lemon-primary), var(--lemon-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.news-preview-card h3 {
    color: var(--lemon-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.news-preview-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Store Preview */
.store-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.store-preview-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.store-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--lemon-primary);
    box-shadow: 0 20px 50px var(--shadow);
}

.store-preview-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.store-preview-icon.vip {
    background: linear-gradient(135deg, var(--lemon-primary), var(--lemon-dark));
}

.store-preview-icon.mvp {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.store-preview-icon.legend {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.store-preview-card h3 {
    color: var(--lemon-dark);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.store-preview-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.preview-price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lemon-dark);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--lemon-dark);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--lemon-primary);
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .navbar {
        padding: 1rem;
    }

    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-left,
    .nav-right {
        justify-content: center;
        padding: 0;
        gap: 2rem;
    }

    .logo {
        order: -1;
        padding: 0.5rem;
    }

    .logo i {
        font-size: 2rem;
    }

    .logo span {
        font-size: 0.9rem;
    }

    .nav-left a,
    .nav-right a {
        font-size: 0.95rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-card.featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .store-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .nav-left,
    .nav-right {
        gap: 1.5rem;
    }

    .store-info {
        flex-direction: column;
        text-align: center;
    }
}
