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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-left-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #333;
}

::-webkit-scrollbar-thumb {
    background-color: ##1D8D0C;
    border-radius: 20px;
    border: 3px solid #333;
}

header {
    background-color: transparent;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

nav {
    background-color: transparent;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: transparent;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: ##1D8D0C;
}

.hero {
    background: url('https://i.imgur.com/YbDFITd.jpeg') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 100px 20px;
    color: #fff;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 600px;
    margin-right: 50px;
}

.hero-content h1 {
    font-size: 3em;
    animation: fadeIn 2s ease-in-out;
}

.hero-content p {
    font-size: 1.5em;
    animation: fadeIn 4s ease-in-out;
    margin: 20px 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-buttons button {
    background-color: ##97DD8C;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.hero-buttons button.shop {
    background-color: transparent;
    border: 2px solid ##1D8D0C;
}

.hero-buttons button:hover {
    background-color: ##82FFA3;
}

.hero-buttons button.shop:hover {
    background-color: ##7DAC8A;
}

.hero-image {
    z-index: 2;
    margin-left: 50px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: slideIn 3s ease-in-out, float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down img {
    width: 40px;
    height: 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.administration {
    padding: 50px 20px;
    background-color: #1e1e1e;
    text-align: center;
}

.administration .section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-in-out;
}

.admin {
    display: inline-block;
    text-align: center;
    background-color: #2c2c2c;
    padding: 30px;
    margin: 0 10px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.admin:hover {
    transform: scale(1.1);
    background-color: #333;
}

.admin img {
    border-radius: 50%;
    border: 2px solid ##1D8D0C;
}

.admin.owner {
    border-color: red;
}

.admin.admin {
    border-color: salmon;
}

.admin.mod {
    border-color: green;
}

.trailer {
    padding: 50px 20px;
    background-color: #121212;
    text-align: center;
}

.trailer .section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.trailer-video {
    display: flex;
    justify-content: center;
}

footer {
    background-color: #121212;
    color: white;
    padding: 40px 20px;
    position: relative;
    width: 100%;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    width: 100px;
    height: auto;
    border: none;
}

.footer-menu,
.footer-info,
.footer-links {
    flex: 1;
    text-align: left;
}

.footer-menu h4,
.footer-info h4,
.footer-links h4 {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-menu ul,
.footer-info ul,
.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-menu ul li,
    color: ##1D8D0C;
.footer-links ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a,
.footer-info ul li a,
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

    background-color: ##1D8D0C;
.footer-info ul li a:hover,
.footer-links ul li a:hover {
    color: #1e88e5;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1e88e5;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 100;
}

.notification.show {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
    }
}


