/* Game Pitch Page Specific Styles */

.hero-pitch {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 140px;
    display: flex;
    align-items: center;
}

.hero-pitch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><defs><pattern id="pitchGrid" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,0 30,15 15,30 0,15" fill="none" stroke="%2339FF14" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="30" height="30" fill="url(%23pitchGrid)"/></svg>');
    background-size: 30px 30px;
    animation: pitchGridMove 25s linear infinite;
}

@keyframes pitchGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* Pitch Info Section */
.pitch-info {
    padding: 6rem 0;
    background: #1a1a2e;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-top: 3px solid #39FF14;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    color: #39FF14;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pitch Form Section */
.pitch-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f3460, #16213e);
}

.form-description {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pitch-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    color: #39FF14;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    background: rgba(26, 26, 46, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #39FF14;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    cursor: pointer;
}

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

/* Radio button styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #e0e6ed;
    transition: color 0.3s ease;
}

.radio-label:hover {
    color: #39FF14;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #39FF14;
    border-radius: 50%;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    background-color: #39FF14;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #0f3460;
    border-radius: 50%;
}

/* Checkbox Styles */
.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 4px;
    margin-right: 0.8rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #39FF14;
    border-color: #39FF14;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a2e;
    font-weight: bold;
    font-size: 0.8rem;
}

.checkbox-label a {
    color: #39FF14;
    text-decoration: none;
    margin-left: 0.3rem;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Contact Info Section */
.contact-info {
    padding: 4rem 0;
    background: #1a1a2e;
    text-align: center;
}

.contact-description {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    color: #d0d0d0;
    font-size: 1rem;
}

.contact-item strong {
    color: #39FF14;
}

/* Responsive Design for Pitch Page */
@media (max-width: 768px) {
    .hero-pitch {
        height: auto;
        min-height: 120px;
        padding: 1.5rem 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pitch-form {
        margin: 0 1rem;
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }

    .radio-group {
        gap: 0.75rem;
    }
    
    .radio-custom {
        width: 18px;
        height: 18px;
    }
    
    .radio-label input[type="radio"]:checked + .radio-custom::after {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 1.5rem;
    }

    .pitch-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
    }
}

