
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0A192F, #4E0378, #FF5F6D);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #FFC700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: #64FFDA;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFC700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(78, 3, 120, 0.8));
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

.button {
    background-color: #64FFDA;
    border: none;
    color: #0A192F;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.button:hover {
    background-color: #FFC700;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

code {
    background-color: rgba(255, 255, 255, 0.1);
    color: #64FFDA;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

pre {
    background-color: rgba(10, 25, 47, 0.8);
    padding: 15px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    text-align: left;
}

th {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFC700;
}

.parallax-container {
    perspective: 1px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.parallax-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.layer-background {
    transform: translateZ(-1px) scale(2);
    background: url('https://images.gptkong.com/demo/sample1.png') no-repeat center center;
    background-size: cover;
}

.layer-foreground {
    transform: translateZ(0);
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .parallax-container {
        height: auto;
    }

    pre {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1, h2, h3, h4 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}

