/* Fanclub Page Styles */

.fanclub-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

/* Hero / Title */
.fanclub-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.fanclub-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-logo-lightest) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Intro content blocks */
.fanclub-intro {
    margin-bottom: 3rem;
    color: var(--textcolor2);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Forms container */
.fanclub-forms {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Section styling */
.fanclub-section {
    background: var(--bodycolor2);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.fanclub-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold-logo-medium) 0%, var(--color-gold-logo-lightest) 50%, var(--color-blood-bright) 100%);
}

.fanclub-section:hover {
    border-color: var(--border-color-light);
}

.fanclub-section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    margin: 0 0 0.5rem;
}

.fanclub-section-desc {
    color: var(--textcolor2);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}

/* Form layout */
.fanclub-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.fanclub-form-single {
    max-width: 400px;
}

.fanclub-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fanclub-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--textcolor2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fanclub-required {
    color: var(--color-blood-bright);
}

.fanclub-field input {
    background: var(--bodycolor1);
    border: 1px solid var(--border-color-light);
    border-radius: 3px;
    color: var(--textcolor1);
    font-size: 1rem;
    padding: 0.7rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.fanclub-field input:focus {
    border-color: var(--color-gold-logo-medium);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.fanclub-field input::placeholder {
    color: var(--textcolor3);
}

/* Field error state */
.fanclub-field-error input {
    border-color: var(--error);
}

.fanclub-error-msg {
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 0.15rem;
}

/* Submit area */
.fanclub-submit {
    margin-top: 1.5rem;
}

.fanclub-submit button {
    cursor: pointer;
    font-size: 1rem;
    padding: 0.75rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    transition: all 0.3s ease;
}

.fanclub-submit button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Thank you messages */
.fanclub-thanks-inner {
    text-align: center;
    padding: 2rem 1rem;
}

.fanclub-thanks-inner h3 {
    font-family: 'Cinzel', serif;
    color: var(--color-gold);
    font-size: 1.4rem;
    margin: 0 0 0.75rem;
}

.fanclub-thanks-inner p {
    color: var(--textcolor2);
    margin: 0;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
    .fanclub-form-grid {
        grid-template-columns: 1fr;
    }

    .fanclub-section {
        padding: 1.5rem;
    }

    .fanclub-page {
        padding: 1rem 0.75rem 3rem;
    }
}
