
:root {
    --primary-color: #00264d;
    --secondary-color: #ff7800;
    --background-gradient: linear-gradient(135deg, #00264d, #1a1a40);
    --text-color: #f5f5f5;
    --accent-gradient: linear-gradient(90deg, #ff7800, #ff4500);
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background: var(--background-gradient);
    overflow-x: hidden;
}

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

header {
    text-align: center;
    padding: 50px 0;
    background: var(--accent-gradient);
    color: white;
    font-family: 'Gilroy', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
}

section {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

h1, h2, h3 {
    font-family: 'Gilroy', sans-serif;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

pre {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
    color: white;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    box-shadow: var(--box-shadow);
}

button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

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

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    header {
        font-size: 1.5rem;
        padding: 30px 0;
    }

    section {
        padding: 20px 0;
    }

    pre {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    header {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

