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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0d1117 100%);
    color: #e1e8ed;
    overflow: hidden;
    height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    width: 80%;
    height: 60%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(124, 179, 66, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(124, 179, 66, 0.5);
    animation: float 6s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 4s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 0.5s;
    animation-duration: 5s;
}

.particle:nth-child(3) {
    left: 45%;
    animation-delay: 1s;
    animation-duration: 4.5s;
}

.particle:nth-child(4) {
    left: 60%;
    animation-delay: 0.3s;
    animation-duration: 5.5s;
}

.particle:nth-child(5) {
    left: 75%;
    animation-delay: 1.5s;
    animation-duration: 4s;
}

.particle:nth-child(6) {
    left: 25%;
    animation-delay: 0.8s;
    animation-duration: 5s;
}

.particle:nth-child(7) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 4.5s;
}

.particle:nth-child(8) {
    left: 55%;
    animation-delay: 1.2s;
    animation-duration: 5.5s;
}

.particle:nth-child(9) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 4s;
}

.particle:nth-child(10) {
    left: 35%;
    animation-delay: 1.8s;
    animation-duration: 5s;
}

@keyframes float {
    0% {
        transform: translateY(80px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) scale(1.2);
        opacity: 0;
    }
}

.content {
    text-align: center;
    z-index: 1;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.title-text {
    background: linear-gradient(135deg, #7cb342, #8bc34a, #9ccc65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
    transition: opacity 0.5s ease;
    display: block;
}


@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(124, 179, 66, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(124, 179, 66, 0.6));
    }
}

.subtitle {
    font-size: 1.2rem;
    color: #a0a9b8;
    font-weight: 300;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    transition: opacity 0.5s ease;
    padding: 0.5rem 1rem;
}


.logo-icon {
    margin: 2rem 0;
    animation: pulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(124, 179, 66, 0.4));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.brand {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #6a7480;
    font-weight: 600;
    letter-spacing: 0.15em;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(124, 179, 66, 0.3);
}

.brand:hover {
    opacity: 1;
    color: #7cb342;
    text-shadow: 0 0 10px rgba(124, 179, 66, 0.6);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .logo-icon svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .particles .particle {
        width: 4px;
        height: 4px;
    }
}