/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body with dark cosmic theme */
body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(ellipse at bottom, #050505 0%, #0b0b0b 100%);
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Floating Stars Layers */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

.stars {
    background: transparent url('https://www.script-tutorials.com/demos/360/images/stars.png') repeat;
    animation: moveStars 100s linear infinite;
}

.stars2 {
    background: transparent url('https://www.script-tutorials.com/demos/360/images/stars2.png') repeat;
    animation: moveStars 150s linear infinite;
}

.stars3 {
    background: transparent url('https://www.script-tutorials.com/demos/360/images/stars3.png') repeat;
    animation: moveStars 200s linear infinite;
}

@keyframes moveStars {
    from { transform: translate(0, 0); }
    to { transform: translate(-50%, -50%); }
}

/* Top-left Leunex title */
.name1 {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 2.4rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px #000000, 0 0 20px #b9b9b9, 0 0 30px #000000;
    z-index: 10;
}

/* Top-right Donate Button */
.donate-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #8e2de2, #4a00e0);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.7);
    transition: all 0.3s ease;
    z-index: 10;
}

.donate-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(138, 43, 226, 1);
}

/* Main content container */
.content {
    max-width: 900px;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 5;
}

/* Page title */
.page-title {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 0 10px #000000, 0 0 20px #574343, 0 0 30px #ffffff;
    margin-bottom: 20px;
}

/* Section titles */
.section-title {
    font-size: 1.9rem;
    color: #d0cfff;
    margin-top: 30px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(208, 207, 255, 0.7);
}

/* Section text */
.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0ff;
    margin-bottom: 20px;
}

/* Get link button matches Donate button style */
.get-link {
    display: inline-block;
    background: linear-gradient(45deg, #8e2de2, #4a00e0);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.7);
    transition: all 0.3s ease;
}

.get-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(138, 43, 226, 1);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.page-title.fade-in { animation-delay: 0.2s; }
.section-title.fade-in { animation-delay: 0.4s; }
.section-text.fade-in { animation-delay: 0.6s; }
.get-link.fade-in { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
/* Body with dark cosmic theme and beautiful space image */
body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    /* Background image + dark overlay */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)),
        url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?auto=format&fit=crop&w=1950&q=80') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
}
