.ath-registration-page {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px 0;
}

.ath-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ath-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #333;
    margin-bottom: 40px;
}

.ath-header h1 {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.ath-header p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

.ath-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.ath-feature-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.ath-feature-item:hover {
    transform: translateY(-5px);
    border-color: #555;
    background: rgba(255, 255, 255, 0.08);
}

.ath-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.ath-feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.ath-feature-item p {
    color: #ccc;
    font-size: 0.95rem;
}

.ath-forms-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.ath-form-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ath-form-card:hover {
    transform: translateY(-3px);
    border-color: #555;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ath-form-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ath-form-description {
    color: #bbb;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1rem;
}

.ath-shortcode-placeholder {
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed #555;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: #aaa;
    font-family: monospace;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ath-shortcode-placeholder:hover {
    border-color: #777;
    background: rgba(0, 0, 0, 0.4);
}

.ath-shortcode-text {
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.ath-additional-features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
}

.ath-additional-features h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffffff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ath-additional-grid {
    display: grid;
    gap: 25px;
}

.ath-additional-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    overflow: auto;
}

.ath-additional-item:hover {
    border-color: #555;
    background: rgba(255, 255, 255, 0.06);
}

.ath-additional-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.ath-additional-item p {
    color: #ccc;
    margin-bottom: 15px;
}

.ath-shortcode-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #444;
    border-radius: 5px;
    padding: 10px;
    font-family: monospace;
    color: #aaa;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .ath-forms-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ath-header h1 {
        font-size: 2.2rem;
    }

    .ath-features-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}



/* Club Directories Styling - Black Theme with Orange Accents */

.club-directories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #fff;
}

.club-directories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.club-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.club-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
    border-color: #ff8c00;
}

.club-card:hover::before {
    opacity: 1;
}

.club-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    z-index: 2;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.club-card:hover .club-image img {
    transform: scale(1.05);
}

.club-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.club-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.club-subtitle {
    color: #ff8c00;
    font-size: 0.95em;
    margin: 0 0 20px 0;
    font-style: italic;
    line-height: 1.4;
}

.club-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.club-members,
.club-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
}

.club-members {
    color: #ccc;
}

.members-icon,
.location-icon {
    font-size: 1.1em;
}

.club-location a {
    color: #ff8c00;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.club-location a:hover {
    color: #ffa500;
    text-decoration: underline;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #ffa500 0%, #ff7700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.loading-spinner {
    color: #ff8c00;
    font-size: 1.1em;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.loading-spinner::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid transparent;
    border-top: 3px solid #ff8c00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-clubs {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-size: 1.2em;
    padding: 60px 20px;
    background: #1a1a1a;
    border-radius: 10px;
    border: 2px dashed #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .club-directories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .club-directories-container {
        padding: 15px;
    }
    
    .club-content {
        padding: 20px;
    }
    
    .club-title {
        font-size: 1.3em;
    }
    
    .load-more-btn {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .club-meta {
        gap: 10px;
    }
    
    .club-members,
    .club-location {
        font-size: 0.85em;
    }
    
    .club-image {
        height: 180px;
    }
}

