* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* Animated Grid Background with Fade Effect */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite, gridFade 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes gridFade {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

/* Diagonal fade overlay */
.grid-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.9) 100%
    );
    animation: fadeSlide 6s ease-in-out infinite;
}

@keyframes fadeSlide {
    0% {
        opacity: 0.6;
        transform: translateX(-20%);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0.6;
        transform: translateX(20%);
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    margin-bottom: 64px;
}

header h1 {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0;
}

/* Sections */
.section {
    margin-bottom: 48px;
}

.section-title {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1a1a1a;
}

.content {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.7;
}

.content p {
    margin-bottom: 12px;
}

/* Bullet Points */
.bullet {
    color: #666666;
    margin-right: 8px;
}

/* Inyxel Media Link - Bright Pink/Purple */
.inyxel-link {
    color: #e879f9;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.inyxel-link:hover {
    color: #f0abfc;
}

/* Venture Names */
.venture-name {
    color: #ffffff;
    font-weight: normal;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-item a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 16px;
    transition: color 0.2s ease;
}

.link-item a:hover {
    color: #cccccc;
}

.handle {
    color: #666666;
    font-size: 14px;
    margin-top: 4px;
}

/* Footer */
footer {
    color: #444444;
    font-size: 14px;
    padding-top: 32px;
    margin-top: 64px;
    border-top: 1px solid #0d0d0d;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    header h1 {
        font-size: 22px;
    }

    .section-title {
        font-size: 18px;
    }

    .content {
        font-size: 15px;
    }

    .section {
        margin-bottom: 40px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: #ffffff;
    color: #000000;
}
