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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
}

/* Header and Navigation */
header {
    background-color: #1a1a1a;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #7289da;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7289da;
}

/* Modern Navbar */
.navbar {
    background: #181a20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 5% 1.1rem 5%;
    box-shadow: 0 4px 24px #000a;
    position: fixed;
    width: 97%;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    border-radius: 16px;
}
.logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: #a78bfa;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    letter-spacing: -1px;
}
.logo i {
    font-size: 1.5em;
    display: flex;
    align-items: center;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1.13rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
}
.nav-links a:hover, .nav-links a:focus {
    color: #a78bfa;
    background: #232136;
}

/* Modern Hero Section */
.hero-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    background: radial-gradient(circle at 35% 50%, #a78bfa33 0%, #232136 60%, #181a20 100%);
    padding: 8.5rem 5% 4rem 5%;
    gap: 3.5rem;
    position: relative;
    border-radius: 0;
}
.hero-content-modern {
    max-width: 520px;
    z-index: 2;
}
.hero-content-modern h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 24px #a78bfa33;
}
.hero-content-modern .accent {
    color: #a78bfa;
    text-shadow: 0 0 24px #a78bfa99;
}
.hero-desc {
    color: #cfcfff;
    font-size: 1.22rem;
    margin-bottom: 2.2rem;
    text-shadow: 0 2px 12px #181a20;
}
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.2rem;
    margin-bottom: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
}
.hero-btn {
    padding: 1.1rem 2.5rem;
    border-radius: 2.5rem;
    font-size: 1.13rem;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 2px 24px #a78bfa55, 0 0px 0px #0000;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
}
.hero-btn.primary {
    background: linear-gradient(90deg, #a78bfa 60%, #6d28d9 100%);
    color: #fff;
    box-shadow: 0 0 32px #a78bfa88;
}
.hero-btn.primary:hover {
    background: #c4b5fd;
    color: #181a20;
    box-shadow: 0 0 40px #a78bfa;
}
.hero-btn.secondary {
    background: #232136;
    color: #a78bfa;
    border: 2px solid #a78bfa;
    box-shadow: 0 0 24px #a78bfa33;
}
.hero-btn.secondary:hover {
    background: #a78bfa;
    color: #181a20;
    box-shadow: 0 0 40px #a78bfa;
}
.hero-image {
    min-width: 400px;
    max-width: 400px;
    min-height: 270px;
    max-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 24px;
    background: #232136;
    box-shadow: 0 0 64px #a78bfa55, 0 0 0 #0000;
    padding: 0;
    margin-left: 1.5rem;
}
.hero-image img {
    width: 320px;
    height: 210px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 0 40px #a78bfa99, 0 4px 32px #000a;
    background: #23272a;
    display: block;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #a78bfa;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0;
    text-shadow: none;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}
.card {
    background: #232136;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
    border: 1px solid #2d2d2d;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: unset;
}
.card:hover {
    transform: translateY(-5px);
    border-color: #a78bfa;
    box-shadow: 0 6px 24px #a78bfa33;
}
.card-image {
    width: 100%;
    height: 200px;
    background-color: #23272a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    padding: 16px;
    border-bottom: 1px solid #2d2d2d;
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: none;
}
.card-image img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    border-radius: 8px;
    image-rendering: auto;
}
.card-content {
    padding: 1.5rem;
    width: 100%;
    text-align: center;
}
.card-content h3 {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 600;
}
.price {
    display: block;
    margin-top: 1rem;
    color: #a78bfa;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0;
}
.section a.social-link {
    color: #a78bfa;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}
.section a.social-link:hover {
    color: #fff;
}
@media (max-width: 900px) {
    .navbar {
        width: 100%;
        padding: 0.7rem 1.5%;
        flex-direction: column;
        gap: 0.7rem;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
    }
    .logo {
        font-size: 1.2rem;
    }
    .nav-links {
        display: none !important;
    }
    .hero-modern {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 6rem 2% 2rem 2%;
    }
    .hero-content-modern h1 {
        font-size: 1.5rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-image {
        min-width: 200px;
        max-width: 240px;
        min-height: 120px;
        max-height: 150px;
        margin-left: 0;
        padding: 0;
    }
    .hero-image img {
        width: 150px;
        height: 100px;
    }
    .section {
        padding: 1.2rem 1% 1.2rem 1%;
        margin: 1.2rem 0;
        border-radius: 10px;
    }
    .section h2 {
        font-size: 1.2rem;
    }
    .grid-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .card {
        min-width: unset;
        max-width: 100%;
        padding-bottom: 1.2rem;
    }
    .card-image {
        height: 120px;
        min-height: 120px;
        max-height: 140px;
        padding: 10px;
    }
    .card-image img, .card-image .fa-coins {
        max-width: 90%;
        max-height: 110px;
    }
    .card-content {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .purchase-btn {
        font-size: 0.98rem;
        padding: 0.6rem 1.1rem;
        min-width: 110px;
        max-width: 100%;
    }
    .stock-counter {
        font-size: 0.92rem;
        padding: 0.2rem 0.5rem;
    }
    #about.section {
        padding: 1.2rem 0.5rem;
        margin: 1.2rem 0;
        border-radius: 10px;
    }
    #about.section h2 {
        font-size: 1.1rem;
    }
    #about.section p {
        font-size: 1rem;
    }
    .hero-btn {
        font-size: 0.98rem;
        padding: 0.6rem 1.1rem;
    }
}
@media (max-width: 600px) {
    .hero-image {
        min-width: 180px;
        max-width: 220px;
        min-height: 110px;
        max-height: 140px;
        padding: 0;
    }
    .hero-image img {
        width: 140px;
        height: 90px;
    }
    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 1rem;
        margin-bottom: 0.3rem;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .hero-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
        border-radius: 2rem;
    }
    .card {
        padding-bottom: 0.7rem;
    }
    .card-content {
        padding: 0.8rem 0.2rem 0.8rem 0.2rem;
    }
    .purchase-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
        min-width: 90px;
    }
    .card-image {
        height: 90px;
        min-height: 90px;
        max-height: 110px;
        padding: 4px;
    }
    .card-image img, .card-image .fa-coins {
        max-width: 80%;
        max-height: 80px;
    }
}

/* About Section */
#about.section {
    background: #232136;
    border-radius: 20px;
    box-shadow: 0 0 32px #a78bfa22, 0 2px 12px #000a;
    padding: 3rem 5%;
    margin: 3rem auto 3rem auto;
    max-width: 1100px;
}
#about.section h2 {
    color: #a78bfa;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 24px #a78bfa99, 0 2px 12px #181a20;
    margin-bottom: 2rem;
}
#about.section p {
    color: #e0e0e0;
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 2rem 5%;
    border-top: 1px solid #2d2d2d;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #7289da;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-modern {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    .hero-image {
        min-width: 180px;
        max-width: 220px;
        margin-left: 0;
    }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2%;
        width: 99%;
        left: 50%;
        transform: translateX(-50%);
    }
    .nav-links {
        gap: 1.2rem;
    }
    .hero-content-modern h1 {
        font-size: 1.5rem;
    }
    .hero-modern {
        padding: 7rem 2% 2rem 2%;
    }
}

.purchase-btn {
    margin-top: 1.2rem;
    padding: 0.7rem 2.1rem;
    border-radius: 2rem;
    background: linear-gradient(90deg, #a78bfa 60%, #6d28d9 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 12px #a78bfa55;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: block;
    width: auto;
    min-width: 140px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.purchase-btn:hover {
    background: #c4b5fd;
    color: #181a20;
    box-shadow: 0 0 24px #a78bfa;
}
.card-image .fa-coins {
    font-size: 4.5rem;
    color: #a78bfa;
    text-shadow: 0 0 16px #a78bfa55;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.stock-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #232136;
    color: #a78bfa;
    border: 1.5px solid #a78bfa;
    border-radius: 2rem;
    padding: 0.35rem 1.1rem 0.35rem 1.1rem;
    font-size: 1.02rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.2rem;
    box-shadow: 0 2px 12px #a78bfa33;
    transition: background 0.2s, color 0.2s;
}
.stock-counter i {
    font-size: 1.1em;
    color: #a78bfa;
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 18, 34, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-content {
    background: #232136;
    border-radius: 18px;
    box-shadow: 0 0 48px #a78bfa55, 0 2px 16px #000a;
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 95vw;
    width: 350px;
    text-align: center;
    position: relative;
    color: #fff;
}
.modal-content h2 {
    color: #a78bfa;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}
.modal-content p {
    color: #e0e0e0;
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
}
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
}
.modal-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    margin: 0 auto;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px #a78bfa33;
}
.modal-btn.primary {
    background: linear-gradient(90deg, #a78bfa 60%, #6d28d9 100%);
    color: #fff;
}
.modal-btn.primary:hover {
    background: #c4b5fd;
    color: #181a20;
}
.modal-btn.secondary {
    background: #23272a;
    color: #a78bfa;
    border: 2px solid #a78bfa;
}
.modal-btn.secondary:hover {
    background: #a78bfa;
    color: #181a20;
}
.modal-btn.discord {
    background: #5865f2;
    color: #fff;
    border: none;
}
.modal-btn.discord:hover {
    background: #4752c4;
    color: #fff;
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: #a78bfa;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
}
.modal-close:hover {
    color: #fff;
}
@media (max-width: 600px) {
    .modal-content {
        width: 95vw;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .modal-btn {
        font-size: 0.98rem;
        padding: 0.6rem 1rem;
    }
}

.discount-modal {
    border: 2.5px solid #a78bfa;
    box-shadow: 0 0 32px #a78bfa, 0 0 80px #a78bfa44;
    background: radial-gradient(circle at 50% 30%, #2d254a 0%, #181a20 100%);
    padding: 2.5rem 2rem 2rem 2rem;
    position: relative;
    color: #fff;
    animation: popIn 0.3s;
}
@keyframes popIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.discount-title {
    color: #a78bfa;
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 0.7rem;
    text-shadow: 0 0 18px #a78bfa, 0 2px 12px #181a20;
}
.discount-timer {
    background: #232136;
    color: #fff;
    border-radius: 1.2rem;
    padding: 0.4rem 1.2rem;
    font-size: 1.08rem;
    font-weight: 600;
    margin: 0.7rem auto 1.1rem auto;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 0 8px #a78bfa33;
}
#discount-timer {
    color: #a78bfa;
    font-weight: 700;
}
.discount-code-line {
    margin-bottom: 0.7rem;
    font-size: 1.13rem;
    color: #fff;
}
.discount-code {
    background: #a78bfa;
    color: #232136;
    border-radius: 0.5rem;
    padding: 0.15rem 0.5rem;
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: 1px;
}
.discount-social {
    color: #a78bfa;
    font-size: 1.01rem;
    margin-bottom: 1.3rem;
    margin-top: 0.2rem;
}
#copy-discount-btn.modal-btn.primary {
    width: 100%;
    font-size: 1.13rem;
    padding: 1.1rem 0;
    margin: 0.7rem 0 0.2rem 0;
    border-radius: 2rem;
    box-shadow: 0 0 24px #a78bfa99;
}
.discount-back-link {
    display: block;
    color: #a78bfa;
    margin-top: 0.7rem;
    font-size: 1.01rem;
    text-decoration: underline;
    opacity: 0.7;
    transition: color 0.2s, opacity 0.2s;
}
.discount-back-link:hover {
    color: #fff;
    opacity: 1;
}
@media (max-width: 600px) {
    .discount-modal {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    #copy-discount-btn.modal-btn.primary {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
}
