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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffe6f0 0%, #f0d9ff 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.floating-hearts {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-hearts::before,
.floating-hearts::after {
    content: "❤️";
    position: absolute;
    font-size: 20px;
    opacity: 0.3;
    animation: float 6s infinite;
}

.floating-hearts::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-hearts::after {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.logo h1 {
    font-size: 3.5rem;
    color: #ff6b9d;
    text-shadow: 3px 3px 0 #ffd0e0;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.logo-decor {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff99bb, transparent);
    margin: 10px auto;
}

.team-section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #b15cff;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "✦";
    font-size: 1.5rem;
    margin-left: 10px;
    color: #ff99bb;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 30px 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(177, 92, 255, 0.3);
}

.avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff99bb, #b15cff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
    font-size: 1.3rem;
    color: #ff4d8c;
    margin-bottom: 10px;
}

.team-card p {
    color: #8f5bbf;
    font-size: 0.9rem;
    font-style: italic;
}

.torvalds .avatar::after {
    content: "👨‍💻";
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(177, 92, 255, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 1rem;
    color: #b15cff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    font-size: 1.2rem;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(255, 155, 187, 0.3);
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b15cff;
    box-shadow: 0 0 15px rgba(177, 92, 255, 0.3);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #ff99bb, #b15cff);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(177, 92, 255, 0.3);
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(177, 92, 255, 0.5);
}

.message-status {
    text-align: center;
    padding: 15px;
    border-radius: 20px;
    margin-top: 20px;
    font-weight: 500;
    display: none;
}

.message-status.success {
    background: rgba(76, 175, 80, 0.2);
    color: #2e7d32;
    border: 2px solid #4caf50;
    display: block;
}

.message-status.error {
    background: rgba(244, 67, 54, 0.2);
    color: #c62828;
    border: 2px solid #f44336;
    display: block;
}

.countdown-timer {
    text-align: center;
    font-size: 0.9rem;
    color: #8f5bbf;
    margin-top: 15px;
    display: none;
}

.countdown-timer.active {
    display: block;
}

.cute-decorations {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.3;
    pointer-events: none;
    animation: bounce 2s infinite;
}

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

@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .team-card {
        width: 200px;
    }
    
    .avatar {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
}