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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a3a1a 0%, #2d1810 50%, #0f2e0f 100%);
    min-height: 100vh;
    color: #f0f0f0;
    position: relative;
    overflow-x: hidden;
}

/* Animated background particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    display: block;
    pointer-events: none;
    width: 5px;
    height: 5px;
    background: rgba(139, 195, 74, 0.5);
    box-shadow: 0 0 10px rgba(139, 195, 74, 0.5);
    animation: float 20s infinite;
    border-radius: 50%;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
    }
    10% {
        transform: translateY(90vh) scale(1);
    }
    100% {
        transform: translateY(-10vh) scale(0);
    }
}

/* Header */
header {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(139, 195, 74, 0.5);
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #8bc34a, #5d4037);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(139, 195, 74, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(139, 195, 74, 0.5); }
    to { text-shadow: 0 0 30px rgba(139, 195, 74, 0.8), 0 0 40px rgba(139, 195, 74, 0.6); }
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 195, 74, 0.4), transparent);
    transition: left 0.5s;
}

nav a:hover::before {
    left: 100%;
}

nav a:hover {
    background: rgba(139, 195, 74, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

nav a.active {
    background: linear-gradient(45deg, rgba(139, 195, 74, 0.3), rgba(93, 64, 55, 0.3));
    box-shadow: 0 5px 20px rgba(139, 195, 74, 0.4);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.content-box {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    border: 1px solid rgba(139, 195, 74, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #8bc34a, #795548);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

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

h2 {
    color: #8bc34a;
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
}

.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(139, 195, 74, 0.1);
    border-left: 4px solid #8bc34a;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(139, 195, 74, 0.2);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(139, 195, 74, 0.3);
}

/* Team Members */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: rgba(139, 195, 74, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    background: rgba(139, 195, 74, 0.2);
    transform: translateY(-5px) scale(1.05);
    border-color: #8bc34a;
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.4);
}

.boss {
    grid-column: 1 / -1;
    background: linear-gradient(45deg, rgba(139, 195, 74, 0.2), rgba(93, 64, 55, 0.2));
    border: 2px solid #8bc34a;
}

/* Song Section */
.song-box {
    background: rgba(93, 64, 55, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 2;
    border: 1px solid rgba(139, 195, 74, 0.5);
    position: relative;
    overflow: hidden;
}

.song-box::before {
    content: '♪';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: -2rem;
    right: 2rem;
    animation: float 5s ease-in-out infinite;
}

/* Request Form */
.request-info {
    background: rgba(139, 195, 74, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.email-link {
    color: #8bc34a;
    text-decoration: none;
    font-size: 1.3rem;
    display: inline-block;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    border: 2px solid #8bc34a;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: #8bc34a;
    color: #1a3a1a;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(139, 195, 74, 0.5);
}

.price-tag {
    display: inline-block;
    background: linear-gradient(45deg, #8bc34a, #5d4037);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin: 0.5rem;
    animation: bounce 2s infinite;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    .content-box {
        padding: 1.5rem;
    }
}