@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');

:root {
    --main-pink: #FFC0CB;
    --dark-pink: #FF69B4;
    --light-pink: #FFF0F5;
    --text-color: #333;
    --white-color: #fff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jua', sans-serif;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 182, 193, 0.3);
    z-index: -1;
}

.hero-content {
    animation: fadeIn 2s ease-in-out;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 1rem;
    animation: float 4s ease-in-out infinite;
}

.server-address {
    font-size: 2.5rem;
    color: var(--white-color);
    text-shadow: 2px 2px 8px var(--dark-pink);
    margin-bottom: 1.5rem;
}

.copy-button {
    background-color: var(--main-pink);
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 0.8rem 2rem;
    font-family: 'Jua', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.copy-button:hover {
    background-color: var(--dark-pink);
    transform: translateY(-3px);
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-down span {
    display: block;
    width: 20px;
    height: 35px;
    border: 2px solid var(--white-color);
    border-radius: 50px;
    position: relative;
}
.scroll-down span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 6px;
    background-color: var(--white-color);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* General Section Styling */
section {
    padding: 6rem 0;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-pink);
}

/* About Section */
.about-section {
    background-color: var(--light-pink);
}

.about-cat-mascot {
    max-width: 150px;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite reverse;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--main-pink);
}

/* Join Section */
.join-section {
    background-color: var(--light-pink);
}

.join-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.step {
    display: flex;
    align-items: center;
    background: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
    max-width: 500px;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-pink);
    margin-right: 1.5rem;
}

/* Footer */
.footer-section {
    background-color: var(--main-pink);
    color: var(--white-color);
    padding: 2rem 0;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes scroll {
    0% { transform: translate(-50%, -4px); opacity: 0; }
    50% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 4px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1.server-address {
        font-size: 2rem;
    }
    .hero-logo {
        max-width: 200px;
    }
    section h2 {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}
