@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-purple: #9b59b6;
    --light-purple: #c398de;
    --dark-purple: #2c0f3a;
    --background-color: #0d021a;
    --text-color: #f0f0f0;
    --card-background: rgba(18, 5, 29, 0.5);
    --border-color: rgba(155, 89, 182, 0.3);
    --glow-color: rgba(189, 102, 224, 0.7);
    --success-color: #27ae60;
    --orange-color: #f39c12;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.aurora-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
}
.shape1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #5e2a72, var(--dark-purple));
    top: -150px;
    left: -150px;
    animation: move1 25s infinite alternate;
}
.shape2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-purple), var(--dark-purple));
    bottom: -200px;
    right: -200px;
    animation: move2 30s infinite alternate;
}

@keyframes move1 {
    from { transform: translate(0, 0) rotate(0deg); }
    to { transform: translate(200px, 100px) rotate(180deg); }
}
@keyframes move2 {
    from { transform: translate(0, 0) rotate(0deg); }
    to { transform: translate(-200px, -150px) rotate(180deg); }
}

header {
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, var(--light-purple), #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animateTextColor 3s ease-in-out infinite;
}

@keyframes animateTextColor {
    0% { background-position: 200% center; }
    100% { background-position: 0% center; }
}

.logo h1 i {
    color: var(--orange-color);
    -webkit-text-fill-color: var(--orange-color);
    text-shadow: 0 0 8px #d35400;
    margin-right: 0.5rem;
}

.nav-button {
    background: var(--primary-purple);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-button:hover {
    background: #8e44ad;
    transform: translateY(-2px);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}
section {
    padding: 5rem 0;
    text-align: center;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-purple);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero h2 {
    font-size: 3.8rem;
    background: linear-gradient(90deg, #fff, var(--light-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.stat-item {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    width: 240px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--glow-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.price-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px var(--glow-color);
    border-color: var(--light-purple);
}
.price-card h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
}
.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}
.price-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    flex-grow: 1;
}
.price-card ul li {
    margin-bottom: 0.8rem;
}
.price-card ul li i {
    color: var(--primary-purple);
    margin-right: 0.7rem;
}

.purchase-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 1.5rem;
    background-color: var(--primary-purple);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.purchase-btn:hover {
    background-color: var(--light-purple);
    color: var(--dark-purple);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--glow-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}
.timeline-item {
    padding: 1rem 40px;
    position: relative;
    width: 50%;
}
.timeline-content {
    padding: 1.5rem 2rem;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    position: relative;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.timeline-content:hover {
    transform: scale(1.03);
}
.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--background-color);
    border: 4px solid var(--primary-purple);
    top: 32px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    border: medium solid var(--border-color);
}
.timeline-item:nth-child(odd) .timeline-content::before {
    right: -16px;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent var(--border-color);
}
.timeline-item:nth-child(even) .timeline-content::before {
    left: -16px;
    border-width: 10px 16px 10px 0;
    border-color: transparent var(--border-color) transparent transparent;
}

.crypto-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto 0 auto;
}
.crypto-item {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.crypto-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.address-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0,0,0,0.3);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    flex-grow: 1;
}
.address-box p {
    font-family: 'Courier New', Courier, monospace;
    word-break: break-all;
}
.copy-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
.copy-btn:hover {
    background: var(--light-purple);
    transform: scale(1.05);
}
.copy-btn.copied {
    background-color: var(--success-color);
    cursor: default;
    transform: scale(1);
}

.discord-cta {
    background: var(--card-background);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    padding: 3rem 1rem;
}
.discord-button {
    display: inline-block;
    background: #5865F2;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}
.discord-button:hover {
    transform: scale(1.05);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(88, 101, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0); }
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    color: #aaa;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.discord-widget-container iframe {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.footer-info {
    margin-top: 1rem;
}
.footer-info p {
    margin-bottom: 0.5rem;
}
.footer-info a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.footer-info a:hover {
    color: var(--light-purple);
}
.copyright {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #777;
}

.hidden {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.show {
    opacity: 1;
    transform: translateY(0);
}
.price-card.hidden, .stat-item.hidden {
    transform: translateY(30px);
}
.timeline-item.hidden {
    opacity: 0;
}
.timeline-item.hidden:nth-child(odd) {
    transform: translateX(-50px);
}
.timeline-item.hidden:nth-child(even) {
    transform: translateX(50px);
}
.timeline-item.show {
    opacity: 1;
    transform: translateX(0);
}

@media screen and (max-width: 768px) {
    .timeline::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 10px; }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; text-align: left; }
    .timeline-dot { left: 10px; }
    .timeline-item:nth-child(odd) .timeline-content::before, .timeline-item:nth-child(even) .timeline-content::before { left: -16px; border-width: 10px 16px 10px 0; border-color: transparent var(--border-color) transparent transparent; }
    .crypto-item { flex-direction: column; align-items: stretch; }
}