* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Indie Flower', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #191414 0%, #1ed760 100%);
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    margin-bottom: 0.35rem;
    padding: 1.4rem 0;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(45deg, #1ed760, #1db954);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.description-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.description-text {
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.description-text:last-child {
    margin-bottom: 0;
}

.submission-form {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #1ed760;
    font-size: 1.3rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1ed760;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 200px;
}

.character-counter {
    text-align: right;
    font-size: 1.15rem;
    color: #b3b3b3;
    margin-top: 0.25rem;
}

.checkbox-group {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkbox-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #1ed760;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-item label {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #e0e0e0;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #1ed760, #1db954);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(29, 185, 84, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.secondary {
    margin-top: 2rem;
    background: transparent;
    border: 2px solid #1ed760;
    color: #1ed760;
}

.submit-btn.secondary:hover {
    background: #1ed760;
    color: #191414;
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
}

.success-message {
    text-align: center;
}

.success-card {
    background: rgba(29, 185, 84, 0.1);
    border: 2px solid #1ed760;
    border-radius: 16px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

.success-card i {
    font-size: 3rem;
    color: #1ed760;
    margin-bottom: 1rem;
}

.success-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1ed760;
}

.success-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0f0f0;
}

.footer {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #1ed760;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1ed760;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    color: #f0f0f0;
    padding: 1.5rem 2rem;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(110%);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #1ed760;
    color: #191414;
}

.cookie-btn.accept:hover {
    background: #1db954;
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.3);
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .description-card,
    .submission-form {
        padding: 1.5rem;
    }
    
    .checkbox-item {
        gap: 0.75rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 0;
    }
    
    .description-card,
    .submission-form {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
    }
}