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

html {
    height: 100%;
}

body {
    background-color: #000;
    color: #fff;
    min-height: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

#content {
    padding-top: 5rem;
}

header .logo img {
    height: 1.5em;
    font-size: 1.5rem;
    display: block;
}

header nav {
    display: flex;
    gap: 1.5rem;
}

header nav a {
    color: #fff;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

footer {
    font-size: 0.75rem;
    color: #888;
    padding: 1rem 2rem;
    text-align: right;
}

footer a {
    color: #888;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.carousel {
    position: relative;
}

.carousel-slide {
    display: none;
    align-items: center;
    gap: 3rem;
    padding: 0 4rem;
}

.carousel-slide.active {
    display: flex;
}

.slide-text {
    flex: 1;
    min-width: 250px;
}

.slide-text h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.slide-image {
    flex: 2;
}

.slide-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.25rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.carousel-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots .dot.active,
.carousel-dots .dot:hover {
    background: #fff;
}

/* Homepage */
.hero {
    text-align: center;
    padding: 3rem 2rem;
}

.hero-logo {
    height: 4rem;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.25rem;
    color: #888;
}

.featured-product {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-info {
    flex: 1;
}

.product-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.product-image {
    flex: 2;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn:hover {
    background: #ccc;
}
