body {
    margin: 0;
    padding: 0;
    background: #0a0c18 url('s1-background.png') no-repeat center center fixed;
    background-size: cover;
    color: #e0ffff;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before, .hero::after {
    content: none !important;
    display: none !important;
}

.hero {
    background: linear-gradient(120deg, #181c2b 0%, #24243e 100%);
    color: #e0ffff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 80px 0 #b9f2ff33, 0 0 240px 0 #181c2b99 inset;
}

.hero-content, .hero-images {
    position: relative;
    z-index: 2;
}

/* Gold Text Effect */
.gold-text-main {
    font-size: 4rem;
    background: linear-gradient(to bottom, #b9f2ff, #e0ffff, #b9f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 5px 15px rgba(0,0,0,0.7);
    margin: 0;
    text-align: center;
}

.gold-text-sub {
    font-size: 2rem;
    color: #b9f2ff;
    text-align: center;
    margin-bottom: 1rem;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fade-in-down 1.2s cubic-bezier(.23,1.01,.32,1) both;
}
@keyframes fade-in-down {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: linear-gradient(90deg, #b9f2ff 0%, #e0ffff 100%);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 0.3s, transform 0.3s;
}
.nav-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.btn-outline {
    border: 1px solid #b9f2ff;
    padding: 8px 20px;
    color: #b9f2ff !important;
    background: transparent;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
    background: #e0ffff;
    color: #24243e !important;
}

/* Status Bar with Glow */
.status-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.status-box {
    border: 1px solid #b9f2ff;
    background: rgba(20, 30, 50, 0.85);
    padding: 20px 80px;
    text-align: center;
    box-shadow: 0 0 30px #b9f2ff55, inset 0 0 15px #e0ffff55;
    border-radius: 10px;
}

.gold-highlight {
    color: #b9f2ff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Download Button */
.btn-download {
    background: linear-gradient(90deg, #b9f2ff 0%, #e0ffff 100%);
    border: none;
    padding: 15px 40px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    color: #24243e;
    box-shadow: 0 5px 20px #b9f2ff44;
    transition: transform 0.3s, background 0.2s;
    box-shadow: 0 2px 16px #b9f2ff44, 0 0 8px #e0ffff22;
}
.btn-download:hover {
    background: #e0ffff;
    color: #181c2b;
    box-shadow: 0 4px 48px #b9f2ffbb, 0 0 48px #e0ffff99;
    transform: scale(1.09);
}



main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

#gallery img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 5px;
}

/* New Sections Styling */
.features-section, .gallery-section, .quickstart-section, .donate-section, .faq-section, .contacts-section {
    background: rgba(20, 20, 40, 0.92);
    margin: 40px auto;
    max-width: 1100px;
    border-radius: 18px;
    box-shadow: 0 4px 48px #b9f2ff22, 0 0 32px #0a0c18cc inset;
    padding: 36px 28px;
}

.section-title {
    color: #b9f2ff;
    text-shadow: 0 2px 24px #b9f2ffcc, 0 0 32px #e0ffff88;
    font-size: 2.2rem;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1px;
    animation: fade-in-up 1.2s 0.2s both;
}
@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}
.feature-item {
    background: linear-gradient(135deg, #b9f2ff 0%, #24243e 100%);
    color: #24243e;
    font-weight: 600;
    border-radius: 8px;
    padding: 18px 28px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(185,242,255,0.12);
    margin-bottom: 10px;
    box-shadow: 0 2px 16px #b9f2ff33, 0 0 8px #e0ffff22;
    transition: transform 0.2s, box-shadow 0.2s;
}
.features-list .feature-item:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 4px 32px #b9f2ff77, 0 0 24px #e0ffff55;
}

.gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}
.gallery-img {
    width: 260px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(185,242,255,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px #b9f2ff44, 0 0 8px #e0ffff22;
}
.gallery-img:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 4px 32px #b9f2ffbb, 0 0 32px #e0ffff99;
}

.quickstart-list {
    color: #e0ffff;
    font-size: 1.1rem;
    margin-left: 1.5em;
}
.quickstart-list a {
    color: #b9f2ff;
    text-decoration: underline;
}

.donate-section {
    text-align: center;
}
.btn-donate {
    display: inline-block;
    margin-top: 18px;
    background: linear-gradient(90deg, #b9f2ff 0%, #e0ffff 100%);
    color: #24243e;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px #b9f2ff44;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 16px #b9f2ff44, 0 0 8px #e0ffff22;
}
.btn-donate:hover {
    background: #b9f2ff;
    color: #302b63;
}

/* FAQ and Contacts Styling */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: linear-gradient(135deg, #e0ffff 0%, #b9f2ff 100%);
    color: #24243e;
    border-radius: 8px;
    padding: 16px 22px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(185,242,255,0.12);
}

.contacts-list {
    color: #b9f2ff;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 1em;
}

.contacts-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 18px;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #181c2b 0%, #24243e 100%);
    color: #e0ffff;
    border-radius: 14px;
    box-shadow: 0 2px 24px #b9f2ff33, 0 0 16px #0a0c18cc;
    padding: 22px 28px 16px 28px;
    min-width: 180px;
    max-width: 220px;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    border: 1.5px solid #b9f2ff44;
}
.contact-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 6px 48px #b9f2ff99, 0 0 32px #e0ffff77;
    border-color: #b9f2ff;
    z-index: 2;
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 10px;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px #b9f2ff44;
}
.contact-label {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.contact-link {
    font-size: 0.98rem;
    color: #24243e;
    opacity: 0.8;
    word-break: break-all;
}
@media (max-width: 900px) {
    .contacts-cards { flex-direction: column; align-items: center; }
}

/* Footer Styling */
.footer {
    background: rgba(0, 0, 0, 0.9);
    color: #b9f2ff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.footer-links a {
    color: #b9f2ff;
    text-decoration: none;
    margin: 0 6px;
    font-size: 1rem;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-copy {
    color: #e0ffff;
    font-size: 0.95rem;
    margin-top: 4px;
}

/* Burger Menu Styling */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    margin-right: 18px;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #b9f2ff;
    border-radius: 2px;
    transition: 0.3s;
}
@media (max-width: 800px) {
    .burger-menu { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        background: #24243e;
        position: absolute;
        top: 60px;
        right: 10px;
        border-radius: 10px;
        box-shadow: 0 2px 12px #b9f2ff44;
        padding: 18px 24px;
        z-index: 1000;
    }
    .nav-links.nav-open { display: flex; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content {
        text-align: center;
        padding: 20px;
    }

    .hero-images img {
        width: 100%;
        height: auto;
    }

    .status-box {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .gold-text-main {
        font-size: 2.5rem;
    }

    .gold-text-sub {
        font-size: 1.5rem;
    }

    .btn-download {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .features-list, .gallery-list {
        flex-direction: column;
        align-items: center;
    }
    .gallery-img {
        width: 90vw;
        max-width: 340px;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .footer-content { font-size: 0.9rem; }
    .contacts-list, .faq-list { font-size: 0.95rem; }
}

.logo img {
    animation: diamond-glow 2.5s infinite alternate;
    filter: drop-shadow(0 0 8px #b9f2ff) drop-shadow(0 0 16px #e0ffff88);
    transition: transform 0.3s;
    vertical-align: middle;
}
.logo img:hover {
    transform: scale(1.12) rotate(-6deg);
    filter: drop-shadow(0 0 18px #e0ffff) drop-shadow(0 0 32px #b9f2ff);
}
@keyframes diamond-glow {
    0% { filter: drop-shadow(0 0 8px #b9f2ff) drop-shadow(0 0 16px #e0ffff88); }
    100% { filter: drop-shadow(0 0 24px #e0ffff) drop-shadow(0 0 40px #b9f2ff); }
}