/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
    position: relative;
}

.contact-hero h1 i {
    color: var(--accent-color);
    margin-right: 15px;
    animation: tvGlow 2s ease-in-out infinite;
}

@keyframes tvGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 0, 85, 0.8); }
    50% { text-shadow: 0 0 40px rgba(255, 0, 85, 1), 0 0 60px rgba(255, 0, 85, 0.6); }
}

.contact-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Contact Sections */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
}

.contact-section.alt-bg {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.contact-section.dark-bg {
    background: #000000;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 85, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur;`n    backdrop-filter: blur(10px);
}

.contact-method-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.3);
}

.contact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), #cc0044);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.contact-method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.contact-method-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 30px;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 85, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    -webkit-backdrop-filter: blur;`n    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group label i {
    color: var(--accent-color);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #000;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-label span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-color), #cc0044);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
}

.btn-submit i {
    margin-right: 10px;
}

/* Notice Content */
.notice-content {
    max-width: 900px;
    margin: 0 auto;
}

.notice-box {
    text-align: center;
    padding: 40px;
    background: rgba(255, 0, 85, 0.15);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    margin: 40px 0;
    -webkit-backdrop-filter: blur;`n    backdrop-filter: blur(10px);
}

.notice-icon {
    color: var(--accent-color);
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.notice-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 15px 0;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
}

/* Social Links Large */
.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 85, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur;`n    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.3);
}

.social-card i {
    font-size: 3rem;
    color: var(--accent-color);
}

.social-card span {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-card.facebook:hover {
    border-color: #1877f2;
}

.social-card.facebook:hover i {
    color: #1877f2;
}

.social-card.youtube:hover {
    border-color: #ff0000;
}

.social-card.youtube:hover i {
    color: #ff0000;
}

.social-card.instagram:hover {
    border-color: #e4405f;
}

.social-card.instagram:hover i {
    color: #e4405f;
}

.social-card.mixcloud:hover {
    border-color: #314359;
}

.social-card.mixcloud:hover i {
    color: #52c1e0;
}

.social-card.twitch:hover {
    border-color: #9146ff;
}

.social-card.twitch:hover i {
    color: #9146ff;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.2rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-methods-grid,
    .social-links-large {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0 50px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .contact-method-card {
        padding: 30px 20px;
    }
    
    .btn-submit {
        font-size: 1rem;
        padding: 15px 30px;
    }
}
