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

body {
    background-color: #1E1E1E;
    color: #FFFFFF;
    font-family: 'Source Han Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 20px;
    padding: 40px;
}

@media (max-width: 1440px) {
    .container {
        padding: 30px;
    }
}

@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 10px;
    }
}

/* Left Section */
.left-section {
    background-color: rgba(15, 15, 15, 0.8);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.left-section h2,
.left-section h3 {
    font-family: 'Roboto Mono', monospace;
    color: #FFD700;
    margin-bottom: 15px;
}

.left-section p {
    margin-bottom: 15px;
    color: #CCCCCC;
}

.left-section pre {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}

.left-section code {
    color: #39FF14;
    font-family: 'Roboto Mono', monospace;
}

/* Right Section */
.right-section {
    background-color: rgba(30, 30, 30, 0.9);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.right-section img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.right-section a {
    color: #00BFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.right-section a:hover {
    color: #FFD700;
}

/* Header */
.header {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(135deg, #8A2BE2, #39FF14);
    color: #FFFFFF;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2em;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #0F0F0F;
    color: #CCCCCC;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Buttons */
.button-highlight {
    background: linear-gradient(45deg, #00BFFF, #39FF14);
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.button-highlight:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.7);
}

/* Links */
a {
    color: #00BFFF;
    text-decoration: none;
}

a:hover {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

/* Fonts */
h1, h2, h3 {
    font-family: 'Roboto Mono', monospace;
}

p, li, span, a {
    font-family: 'Source Han Sans', sans-serif;
}

/* Icons */
.icon {
    width: 40px;
    height: 40px;
    fill: #00BFFF;
    stroke: #FFFFFF;
    stroke-width: 2px;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: rotate(360deg);
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particle {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    top: 0;
    left: 0;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #39FF14;
    border-radius: 50%;
    animation: particle 3s infinite;
}

.parallax {
    background-image: url('https://images.gptkong.com/demo/sample1.png');
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    .header p {
        font-size: 1em;
    }

    .left-section, .right-section {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5em;
    }

    .left-section, .right-section {
        padding: 10px;
    }
}

/* Code Block Styling */
pre {
    background-color: #0F0F0F;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
    color: #39FF14;
}

code {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; 
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Card Component */
.card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.card h4 {
    color: #FFD700;
    margin-bottom: 10px;
}

.card p {
    color: #CCCCCC;
    margin-bottom: 10px;
}

/* Navigation */
nav {
    display: flex;
    flex-direction: column;
}

nav a {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Highlight Text */
.highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Footer Links */
.footer a {
    color: #00BFFF;
    margin: 0 10px;
}

/* Parallax Sections */
.section {
    position: relative;
    padding: 60px 20px;
    color: #FFFFFF;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.7);
    z-index: -1;
}

/* Responsive Images */
@media (max-width: 768px) {
    .card img {
        height: auto;
    }
}

