:root {
    --primary-color: #00f3ff;
    --secondary-color: #bc13fe;
    --bg-dark: #050510;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0c0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 20%);
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CjxyZWN0IHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0iIzA1MDUxMCIvPgo8Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjEiLz4KPC9zdmc+');
    animation: starMove 100s linear infinite;
}

@keyframes starMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1000px 1000px;
    }
}

/* Glassmorphism Utilities */
.glass-header,
.glass-footer,
.coin-card,
.news-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.logo-img {
    width: 30px;
    height: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.neon-text {
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(188, 19, 254, 0.6);
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
}

/* Sections */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 2px solid var(--glass-border);
    display: inline-block;
    padding-bottom: 0.5rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Market Grid */
.market-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.coin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coin-card {
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.coin-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.coin-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.coin-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buy-btn {
    display: block;
    padding: 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid transparent;
}

.btn-lobstr {
    background: rgba(25, 118, 210, 0.2);
    color: #4fc3f7;
    border-color: rgba(25, 118, 210, 0.5);
}

.btn-lobstr:hover {
    background: rgba(25, 118, 210, 0.4);
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.3);
}

.btn-scopuly {
    background: rgba(103, 58, 183, 0.2);
    color: #b39ddb;
    border-color: rgba(103, 58, 183, 0.5);
}

.btn-scopuly:hover {
    background: rgba(103, 58, 183, 0.4);
    box-shadow: 0 0 15px rgba(179, 157, 219, 0.3);
}

.btn-lumexo {
    background: rgba(0, 150, 136, 0.2);
    color: #80cbc4;
    border-color: rgba(0, 150, 136, 0.5);
}

.btn-lumexo:hover {
    background: rgba(0, 150, 136, 0.4);
    box-shadow: 0 0 15px rgba(128, 203, 196, 0.3);
}

/* News Section */
.news-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

.news-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-snippet {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.glass-footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .glass-header {
        padding: 1rem;
    }

    nav a {
        margin-left: 1rem;
        font-size: 0.9rem;
    }
}