* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    min-height: 100vh;
    background: #fff0f5 url('https://t.alcy.cc/moez') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 240, 245, 0.65);
    z-index: -1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 100;
    border-bottom: 1px solid rgba(240, 240, 240, 0.5);
}

.logo {
    height: 40px;
    cursor: pointer;
}

.logo img {
    height: 100%;
    object-fit: contain;
}

.hamburger-menu {
    width: 26px;
    height: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 101;
}

.desktop-menu {
    display: none;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

.hamburger-menu.active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu {
    position: absolute;
    top: 60px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 0;
    width: 140px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s;
    pointer-events: none;
}

.menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.menu a, .desktop-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    text-align: center;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    opacity: 0;
    transition: all 0.4s;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.page.active {
    opacity: 1;
    pointer-events: all;
    position: relative;
    z-index: 1;
}

.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about-content {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
}

.footer a:not(.btn) {
    color: #888;
    text-decoration: none;
}

.btn-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.btn {
    padding: 12px 24px;
    background: #FE7BB5;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    width: var(--btn-width, 120px);
    min-width: 120px;
    box-sizing: border-box;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #ff9dc9;
    box-shadow: 0 5px 15px rgba(254, 123, 181, 0.3);
}

.banner-container {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    height: 280px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.banner-slide.active {
    opacity: 1;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.banner-btn {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 0.95rem;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.banner-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.banner-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-indicator.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .desktop-menu {
        display: none;
    }

    .banner-container {
        height: 200px;
        margin: 15px auto;
        border-radius: 10px;
        width: calc(100% - 30px);
    }
    
    .banner-slide {
        padding-bottom: 30px;
    }
    
    .banner-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .banner-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .banner-indicators {
        gap: 10px;
    }
    
    .banner-indicator {
        width: 10px;
        height: 10px;
    }
    
    .content, .about-content, .footer {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }
    
    .desktop-menu {
        display: flex;
        gap: 15px;
    }
    
    .menu {
        display: none;
    }
    
    .banner-container {
        width: 50%;
    }
}