* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0B0B0B;
    --black-pure: #000;
    --yellow: #ffa200;
    --yellow-hover: #ffa200;
    --white: #FFFFFF;
    --gray: #BDBDBD;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(255, 212, 0, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-highlight, .highlight {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--yellow);
}

.btn-discord {
    background: transparent;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-discord:hover {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--yellow);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 0 4rem;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-line {
    display: block;
    color: var(--white);
}

.hero-highlight {
    color: var(--yellow);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--yellow-hover);
    box-shadow: 0 0 30px rgba(255, 212, 0, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.3);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Steps Section */
.steps {
    padding: var(--spacing-xl) 0;
    background: var(--black-pure);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -1px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.step-card {
    background: var(--black);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 212, 0, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 212, 0, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Stats Section */
.stats {
    padding: var(--spacing-lg) 0;
    background: var(--black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--black-pure);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--black);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 212, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Rules Section */
.rules {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.rules-content {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 212, 0, 0.1);
}

.rule-item:last-child {
    border-bottom: none;
}

.rule-bullet {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.rule-item p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Team Section */
.team {
    padding: var(--spacing-xl) 0;
    background: var(--black-pure);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.team-card {
    background: var(--black);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 212, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.team-avatar {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    color: var(--yellow);
    font-size: 1rem;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.faq-list {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 212, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--yellow);
}

.faq-icon {
    font-size: 2rem;
    color: var(--yellow);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 2rem;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--black-pure);
}

.contact-form {
    max-width: 700px;
    margin: var(--spacing-lg) auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--black);
    border: 1px solid rgba(255, 212, 0, 0.2);
    border-radius: var(--radius);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
    display: block;
}

/* Footer */
.footer {
    background: var(--black-pure);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 212, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray);
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--yellow);
}

.footer-links a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 212, 0, 0.1);
    color: var(--gray);
}

/* Store Specific Styles */
.store-page {
    background: var(--black);
}

.store-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: var(--black-pure);
}

.store-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.store-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
}

.store-content {
    padding: var(--spacing-lg) 0;
}

.store-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.store-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 212, 0, 0.2);
    color: var(--gray);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.store-search {
    margin-bottom: 2rem;
}

.store-search input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--black-pure);
    border: 1px solid rgba(255, 212, 0, 0.2);
    border-radius: var(--radius);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.store-search input:focus {
    outline: none;
    border-color: var(--yellow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--black-pure);
    border: 1px solid rgba(255, 212, 0, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 212, 0, 0.2);
}

.product-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--yellow);
    color: var(--black);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 212, 0, 0.1) 0%, rgba(255, 196, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 1px solid rgba(255, 212, 0, 0.1);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-prices {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--yellow);
}

.product-price:last-child {
    color: var(--gray);
    font-size: 0.95rem;
}

.product-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    flex: 1;
}

/* Selected Kit Panel */
.selected-kit {
    position: sticky;
    top: 100px;
    background: var(--black-pure);
    border: 1px solid rgba(255, 212, 0, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    height: fit-content;
}

.kit-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.kit-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.kit-empty h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.kit-empty p {
    color: var(--gray);
}

.kit-content {
    display: none;
}

.kit-content.active {
    display: block;
}

.kit-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 212, 0, 0.1) 0%, rgba(255, 196, 0, 0.05) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.kit-header {
    margin-bottom: 2rem;
}

.kit-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.kit-prices {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kit-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
}

.kit-price-usd {
    font-size: 1.1rem;
    color: var(--gray);
}

.kit-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.kit-divider {
    height: 1px;
    background: rgba(255, 212, 0, 0.2);
    margin: 2rem 0;
}

.kit-recommendations h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.kit-rec-grid {
    display: grid;
    gap: 1rem;
}

.kit-rec-item {
    background: var(--black);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 212, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.kit-rec-item:hover {
    border-color: var(--yellow);
}

.kit-rec-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.kit-rec-price {
    font-size: 0.9rem;
    color: var(--yellow);
}

.kit-notice {
    background: rgba(255, 212, 0, 0.1);
    border: 1px solid rgba(255, 212, 0, 0.2);
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}

.kit-notice p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Claim Section */
.claim-section {
    padding: var(--spacing-xl) 0;
    background: var(--black-pure);
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.claim-step {
    text-align: center;
    padding: 2rem;
}

.claim-number {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.claim-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.claim-step p {
    color: var(--gray);
    line-height: 1.6;
}

.claim-note {
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
    background: rgba(255, 212, 0, 0.1);
    border: 1px solid rgba(255, 212, 0, 0.2);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
}

.claim-note p {
    color: var(--gray);
    line-height: 1.8;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--black);
    border: 1px solid rgba(255, 212, 0, 0.3);
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2.5rem;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0.5rem;
}

.modal-close:hover {
    color: var(--yellow);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-right: 2rem;
}

.modal-body {
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 212, 0, 0.1);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 700;
    font-size: 1.2rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
}

.modal-footer .btn {
    flex: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .store-layout {
        grid-template-columns: 1fr;
    }

    .selected-kit {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(255, 212, 0, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    .btn-discord {
        display: none;
    }

    .hero {
        min-height: 80vh;
        padding: 6rem 0 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .steps-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .store-title {
        font-size: 2.5rem;
    }
}