:root {
    --bg-color: #ffffff;
    --text-primary: #000000;
    --text-secondary: #666666;
    --border-color: #e5e5e5;
    --hover-bg: #f5f5f5;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* DEX Network Canvas Background */
#network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Content Layout */
.content-wrapper {
    padding: 2rem;
    width: 100%;
    max-width: 800px;
    z-index: 1;
    text-align: center;
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-area {
    margin-bottom: 3rem;
}

.logo-img {
    height: 56px;
    width: auto;
    filter: grayscale(1) contrast(1.2);
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.main-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.highlight {
    color: var(--text-primary);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: translateY(-5px) rotateX(2deg);
}

/* Social Buttons */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
    background: transparent;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-btn:hover {
    background: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
}

/* Remove gradient spheres completely */
.gradient-sphere {
    display: none;
}

.glass-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    opacity: 1;
    animation: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.25rem;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }
}