@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Quicksand:wght@400;500;600&display=swap');

body::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #ffffff #000000;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-left: 1px solid #ffffff;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 0;
    border: 3px solid #000000;
    transition: background-color 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b2432;
    color: #f0f0f0;
    line-height: 1.6;
    font-family: 'Quicksand', sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(20, 60, 80, 0.5) 0%, rgba(10, 30, 40, 1) 70%);
    z-index: -1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: rgba(11, 36, 50, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.download-button {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.download-button:hover {
    background-color: #43a047;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.hero-section, .feature-section {
    padding: 60px 20px;
    text-align: center;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #a3e6e6;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #e6e6a3;
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.feature-image, video.feature-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%, 0 10%);
    border-radius: 10px;
    border: 8px solid #365e64;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.dark-bg {
    background-color: rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 30px auto;
}

.carousel-images {
    position: relative;
    overflow: hidden;
}

.carousel-img {
    display: none;
    width: 100%;
}

.carousel-img.active {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 50;
    font-size: 1.5em;
    border-radius: 5px;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9em;
}