
body {
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    background: linear-gradient(135deg, #0A1F44, #162C5D);
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0A1F44, #1E387D);
    position: relative;
}

header h1 {
    font-family: 'Futura', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #64FFDA;
    margin: 0;
}

header p {
    font-size: 1.2rem;
    color: #C700FF;
    margin-top: 10px;
}

.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230A1F44" fill-opacity="1" d="M0,192L48,176C96,160,192,128,288,138.7C384,149,480,203,576,213.3C672,224,768,192,864,176C960,160,1056,160,1152,149.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
}

section {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    position: relative;
}

section h2 {
    font-family: 'Futura', sans-serif;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 20px;
}

section p {
    font-size: 1rem;
    color: #FFFFFF;
}

code {
    background: #1E387D;
    color: #64FFDA;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Roboto Mono', monospace;
    display: inline-block;
}

pre {
    background: #162C5D;
    color: #64FFDA;
    padding: 15px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 20px 0;
}

pre code {
    display: block;
    white-space: pre-wrap;
    word-break: break-word;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #64FFDA, #C700FF);
    color: #FFFFFF;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.button:hover::before {
    transform: translate(-50%, -50%) scale(3);
    opacity: 1;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section p {
        font-size: 0.9rem;
    }
}

.footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #0A1F44, #1E387D);
    color: #64FFDA;
    margin-top: 40px;
}

