body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    cursor: none;
}

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav a {
    color: #00d4ff;
    text-decoration: none;
    padding: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #ff00ff;
    text-shadow: 0px 0px 10px #ff00ff;
}

.hero {
    background: url('your-starry-night-image-url.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8);
    font-size: 3rem;
}

.hero h1 {
    font-size: 4rem;
}

.hero p {
    font-size: 1.5rem;
}

button {
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
}

main {
    margin-top: 100px;
    padding: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
}

body {
    cursor: url(cursor1.png) 32 32, auto;
}

nav a:hover, button:hover {
    cursor: url(cursor2.png) 32 32, auto;
}

#success-message {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 10px;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

.about-section h2 {
    color: #00d4ff;
    text-align: center;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.quote {
    font-style: italic;
    color: #ff00ff;
    text-align: center;
    margin-top: 20px;
    font-size: 1.3rem;
}

@keyframes twinkling {
    from { background-position: 0 0; }
    to { background-position: -1000px 1000px; }
}

.starry-bg {
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    animation: twinkling 10s linear infinite;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.flip-card {
    width: 250px;
    height: 350px;
    perspective: 1000px;
    margin: 20px auto;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    border: 2px solid #00d4ff;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
}

.flip-card-back {
    transform: rotateY(180deg);
    color: #ff00ff;
}

.flip-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #00d4ff;
    text-shadow: 0px 0px 10px #00d4ff;
    animation: bounce 1.5s infinite ease-in-out;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

.solar-system {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 50px auto;
}

.sun {
    width: 50px;
    height: 50px;
    background: yellow;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
}

.planet {
    width: 20px;
    height: 20px;
    background: blue;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: -50px -50px;
    animation: orbit 4s linear infinite;
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(50px); }
    to { transform: rotate(360deg) translateX(50px); }
}

.loading-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.orbit {
    position: relative;
    width: 80px;
    height: 80px;
}

.star {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: absolute;
    animation: orbit 2s linear infinite;
}

.star:nth-child(1) { top: 0; left: 50%; animation-duration: 2s; }
.star:nth-child(2) { top: 50%; left: 0; animation-duration: 2.5s; }
.star:nth-child(3) { bottom: 0; left: 50%; animation-duration: 3s; }

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

.loading-text {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
}
/* The End! */