* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a0f0a;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(26, 15, 10, 0.3) 0%, 
        rgba(26, 15, 10, 0.6) 50%,
        rgba(26, 15, 10, 0.9) 85%,
        #1a0f0a 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #d4a574;
    width: 12px;
    height: 12px;
}

.logo {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  
}

h1 {
    font-size: 2.5rem;
    color: #d4a574;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 2px;
}

.subtitle {
    color: #c9b896;
    font-size: 1rem;
    font-style: italic;
}

main {
    padding: 40px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid #d4a574;
    border-radius: 12px;
    color: #d4a574;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-button:hover,
.link-button:active {
    background: #d4a574;
    color: #1a0f0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.icon {
    width: 24px;
    height: 24px;
}

footer {
    text-align: center;
    padding: 30px 20px;
    color: #8b7355;
    font-size: 0.9rem;
}

footer a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .banner-content {
        padding: 60px 20px;
    }
    
    main {
        padding: 60px 30px;
    }
}
