/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e1e2e;
    color: #e0e0f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
}

header {
    padding: 2rem 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #a390f0;
    text-shadow: 0 0 15px rgba(163, 144, 240, 0.8);
}

section {
    width: 80%;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #2b2b3c;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(163, 144, 240, 0.4);
}

h2 {
    color: #d3bdfd;
    margin-bottom: 0.5rem;
}

ul, ol {
    margin-left: 1.5rem;
    color: #e5e5ff;
}

#copy-code button {
    padding: 10px 20px;
    background-color: #a390f0;
    color: #1e1e2e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#copy-code button:hover {
    background-color: #d3bdfd;
}


footer {
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
    background-color: #2b2b3c;
    color: #9a9abb;
    border-top: 1px solid #4a4a5a;
    width: 100%;
}

footer p {
    margin: 0.5rem 0;
}

p, li {
    font-size: 1rem;
    color: #d0d0e6;
}

a {
    color: #a390f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d3bdfd;
}

video {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(163, 144, 240, 0.4);
}