:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary-color: #61ce70;
    /* eToro green-ish */
    --secondary-color: #2b3139;
    --accent-color: #00c3ff;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(30, 30, 30, 0.4);
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animation */
.background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 15% 50%, rgba(97, 206, 112, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 195, 255, 0.08), transparent 25%);
    z-index: -1;
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-color);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(97, 206, 112, 0.4);
}

/* Sections */
.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.market-section,
.news-section,
.about-section {
    padding: 5rem 5%;
}

/* Coin Grid */
.coin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coin-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.coin-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.coin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.coin-card:hover::before {
    opacity: 1;
}

.coin-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.coin-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.coin-issuer {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 1.5rem;
    word-break: break-all;
    font-family: monospace;
}

.buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.buy-btn i {
    margin-right: 8px;
}

.btn-lobstr {
    background: rgba(25, 118, 210, 0.2);
}

.btn-lobstr:hover {
    background: rgba(25, 118, 210, 0.4);
}

.btn-scopuly {
    background: rgba(103, 58, 183, 0.2);
}

.btn-scopuly:hover {
    background: rgba(103, 58, 183, 0.4);
}

.btn-lumexo {
    background: rgba(255, 152, 0, 0.2);
}

.btn-lumexo:hover {
    background: rgba(255, 152, 0, 0.4);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-3px);
    background: rgba(40, 40, 40, 0.5);
}

.news-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.95rem;
    color: #ccc;
}

/* About & Footer */
.glass-panel {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.glass-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .glass-header {
        padding: 1rem;
    }

    nav {
        display: none;
    }

    /* Simplify for mobile for now */
}