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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6a1b9a 0%, #4a148c 50%, #ffffff 50%, #ffffff 100%);
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.main-title {
    font-size: 5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    letter-spacing: 8px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    font-style: italic;
    opacity: 0.9;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.token-info h2 {
    font-size: 4rem;
    color: #6a1b9a;
    margin-bottom: 15px;
    font-weight: bold;
}

.tagline {
    font-size: 1.3rem;
    color: #4a148c;
    font-weight: 600;
    margin-bottom: 15px;
}

.blockchain-info {
    font-size: 1.1rem;
    color: #6a1b9a;
    font-weight: 500;
    margin-top: 20px;
    padding: 10px;
    background: rgba(106, 27, 154, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #6a1b9a;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(106, 27, 154, 0.3);
}

.card h3 {
    color: #6a1b9a;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.card p {
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    color: #333;
    line-height: 2;
    font-size: 1.1rem;
    padding-left: 25px;
    position: relative;
}

.card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6a1b9a;
    font-weight: bold;
    font-size: 1.3rem;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(106, 27, 154, 0.9);
    border-radius: 15px;
    color: #ffffff;
    margin-top: 40px;
}

footer p {
    font-size: 1.2rem;
    margin: 10px 0;
}

footer p:first-child {
    font-size: 1.5rem;
    font-weight: bold;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-text {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 8rem;
    font-weight: bold;
    animation: float 20s infinite linear;
    user-select: none;
}

.floating-text:nth-child(1) {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.floating-text:nth-child(2) {
    top: 50%;
    left: -20%;
    animation-delay: 7s;
}

.floating-text:nth-child(3) {
    top: 80%;
    left: -20%;
    animation-delay: 14s;
}

@keyframes float {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    100% {
        transform: translateX(120vw) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .token-info h2 {
        font-size: 3rem;
    }

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

    .floating-text {
        font-size: 4rem;
    }
}

