html, body {
    margin: 0; padding: 0;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    height: 100%;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('../images/gyara5.jpeg') no-repeat center center fixed;
    background-size: cover;
    z-index: -10;
}
#language-switcher {
    position: fixed;
    top: 20px; right: 20px;
    z-index: 1000;
}
#language-switcher button {
    background: transparent;
    color: #0ff;
    border: 1px solid #0ff;
    margin-left: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.kyakltu {
    font-family: sans-serif;
    letter-spacing: 2px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1;
    position: relative;
}
.logo {
    font-size: 1.5em;
    color: white;
    width: 12%;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
nav ul li {
    color: white;
    cursor: pointer;
}
.main-content {
    text-align: center;
    padding: 330px 26%;
    position: relative;
    z-index: 1;
}
.main-content h1 img {
    font-size: 5rem;
    letter-spacing: 0.1em;
    animation: pulseGlow 3s infinite;
    -webkit-filter: drop-shadow: drop-shadow(0px 0px 12px rgba(7,237,253,0.6));
    filter: drop-shadow(0px 0px 12px rgba(7,237,253,0.6));
}
.setuli {
    margin-bottom: 20px;
}
@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
    50% { text-shadow: 0 0 20px #0ff, 0 0 40px #0ff; }
}
.section-skewed {
    position: relative;
    padding: 100px 20px;
    transform: skewY(-5deg);
    margin-bottom: -80px;
    z-index: 1;
    opacity: 0;
    transform: translateX(-50px) skewY(-5deg);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.section-skewed.visible {
    opacity: 1;
    transform: translateX(0) skewY(-5deg);
}
.section-inner {
    transform: skewY(5deg);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}
img.vrim {
    width: 60% !important;
}
h2 {
    font-size: 2.2rem;
    color: #0ff;
    margin-bottom: 0.5em;
    flex-basis: 100%;
}
.clean-energy {
    background: #000;
}
.vr-tech {
    background: url('../images/gyara2.jpeg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
}
p, ul {
    font-size: 1.1rem;
    line-height: 1.8;
    flex: 1;
    margin: 0;
}
.clean-energy p, .clean-energy ul {
    color: #fff;
}
.vr-tech p, .vr-tech ul {
    color: #ddd;
}
ul {
    padding-left: 20px;
}
ul li::marker {
    color: #0ff;
}
.section-button {
    justify-content: center;
    margin-top: 40px;
    flex-basis: 100%;
    width: 100%;
}
.section-button button {
    background-color: transparent;
    border: 1.5px solid #0ff;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 1rem;
    color: #0ff;
    cursor: pointer;
    letter-spacing: 4px;
    transition:
        background-color 0.5s cubic-bezier(0.4,0,0.2,1),
        color 0.5s cubic-bezier(0.4,0,0.2,1),
        transform 0.5s cubic-bezier(0.4,0,0.2,1);
    max-width: 300px;
}
.section-button button:hover {
    background-color: #0ff;
    color: #000;
    transform: scale(1.05);
}
.section-image {
    /*flex: 0 0 350px;
    max-width: 350px;*/
    border-radius: 15px;
    overflow: hidden;
}
.section-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}
footer {
    background: #000;
    color: #ccc;
    padding: 30px 40px 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.footer-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-logo {
    font-size: 1.5em;
    color: #0ff;
    width: 30%;
    margin-top: 52px;
}
.footer-info {
    font-size: 0.75rem;
}
.copyright {
    font-size: 0.75rem;
    margin-top: 20px;
    color: #888;
    text-align: center;
}
#shooting-stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    opacity: 0.8;
    transform: rotate(45deg);
    animation: shoot 1s linear forwards;
}

@keyframes shoot {
    0% {
        transform: translate(0, 0) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: translate(600px, 600px) rotate(45deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .section-inner {
        flex-wrap: wrap;
    }
    .section-image {
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    p, ul {
        flex: 1 1 100%;
    }
    h2 {
        flex-basis: 100%;
    }
}
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    flex-direction: column;
}

.ring {
    width: 60px;
    height: 60px;
    border: 3px solid #0ff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 2.5s linear infinite;
    box-shadow: 0 0 10px #0ff88;
    position: relative;
}

.star {
    width: 12px;
    height: 12px;
    background: #0ff;
    border-radius: 50%;
    position: absolute;
    top: 24px;
    left: 24px;
    box-shadow: 0 0 10px #0ff;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@media screen and (max-width: 768px)  {
    .logo {
        width: 36% !important;
    }
    .main-content {
        padding: 330px 4% !important;
    }
    .footer-logo {
        width: 56% !important;
    }
}