* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --bg-color: #f4f4f9;
    --text-color: #333;
    --header-bg:  #f4f4f9;
    --header-text: #fff;
    --red-tint: #2039ff;
    --button-bg: rgba(0, 0, 0, 0.5);
    --button-bg-hover: rgba(0, 0, 0, 0.8);
    --card-bg: #fff;
}
[data-theme="dark"]
{
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --header-bg: #1f1f1f;
    --header-text: #e0e0e0;
    --red-tint: #ff6f61;
    --button-bg: rgba(255, 255, 255, 0.3);
    --button-bg-hover: rgba(255, 255, 255, 0.6);
    --card-bg: #1f1f1f;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
}

header {
    background: var(--header-bg);
    color: var(--red-tint);
    
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
header h1 {
    font-size: 2.5rem;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.intro {
    text-align: center;
    margin-bottom: 2rem;
}

.intro p {
    font-size: 1.2rem;
    color: var(--text-color);
}

.images, .video {
    margin-bottom: 2rem;
    text-align: center;
}

.logoTypo {
    display: flex;
    align-items: center;
}

.logoTypo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.slider-container-long {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 900px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.slider-buttons {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    transform: translateY(-50%);
}

.slider-buttons button {
    background-color: var(--button-bg);
    color: var(--header-text);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.slider-buttons button:hover {
    background-color: var(--button-bg-hover);
}

.video iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    display: block;
    margin: 1rem auto;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.details {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.details h2 {
    color: var(--red-tint);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.images h2 {
    color: var(--red-tint);
}
.video h2 {
    color: var(--red-tint);
}

.details p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

footer {
    background: #333;
    color: var(--header-text);
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
.toggle-theme {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--button-bg);
    color: var(--header-text);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.toggle-theme:hover {
    background: var(--button-bg-hover);
}