/* ACE Fall League - Modern Interactive Styles */

/* Variables */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-color: #2c2c2c;
    --light-bg: #f8f9fa;
    --text-color: #333;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
.ace-fall-league-info * {
    box-sizing: border-box;
}

.ace-fall-league-info {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.league-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 1;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Image Background */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Darker overlay for video */
.hero-background:has(.hero-video) .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Video loading transition */
.hero-video {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video.loaded {
    opacity: 1;
}

/* Mobile optimization - hide video on small screens */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    
    /* Ensure image background shows on mobile */
    .hero-image {
        display: block !important;
    }
    
    /* Lighter overlay on mobile without video */
    .hero-overlay {
        background: rgba(0, 0, 0, 0.4);
    }
}

/* Animated Basketball Background */
.animated-balls {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ball {
    position: absolute;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="white" stroke-width="2" opacity="0.3"/><path d="M50 5 Q50 50 50 95 M5 50 Q50 50 95 50 M20 20 Q50 50 80 80 M80 20 Q50 50 20 80" stroke="white" stroke-width="2" opacity="0.3"/></svg>') no-repeat center center;
    background-size: contain;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.ball-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.ball-2 {
    top: 50%;
    right: 10%;
    animation-delay: 7s;
    animation-duration: 25s;
}

.ball-3 {
    bottom: 10%;
    left: 50%;
    animation-delay: 14s;
    animation-duration: 18s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(100px, -100px) rotate(120deg);
    }
    66% {
        transform: translate(-100px, 100px) rotate(240deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Ensure hero doesn't extend beyond viewport */
.league-hero * {
    max-height: 100vh;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white !important;
    background: rgba(0, 87, 184, 0.85);
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
    border: 3px solid #0057b8;
    box-shadow: 0 4px 20px rgba(0, 87, 184, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Animations */
.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    margin: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 35px;
    height: 35px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    margin: 15px auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Stats Section */
.league-stats {
    background: var(--dark-color);
    color: white;
    padding: 80px 20px;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Content Sections */
.league-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    position: relative;
    z-index: 10;
    display: block;
    opacity: 1;
    visibility: visible;
}

.content-section {
    background: #ffffff;
    position: relative;
    display: block;
    opacity: 1;
    visibility: visible;
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 40px;
}

/* Add background to main container */
.ace-fall-league-info {
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    display: block;
}

/* Ensure content after hero is visible */
.ace-fall-league-info > *:not(.league-hero) {
    position: relative;
    z-index: 5;
    background: inherit;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    padding-bottom: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    padding-top: 40px;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    margin: -30px -30px 20px -30px;
    padding: 50px 30px 20px 30px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    border-radius: 15px 15px 0 0;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    padding: 0 30px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card p strong {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Adjust height for Full Season card with more content */
.info-cards {
    align-items: stretch;
}

.info-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Individual card color accents */
.info-card:nth-child(1) h3 {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.info-card:nth-child(2) h3 {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
}

.info-card:nth-child(3) h3 {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
}

/* Section Backgrounds */
.league-description {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

/* Critical fix for content visibility */
.ace-fall-league-info {
    overflow: visible !important;
}

.league-hero + * {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body {
    background: #ffffff;
}

/* Video Section */
.league-video-section {
    margin: 80px 0;
    padding: 40px 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Photo Gallery */
.league-gallery {
    margin: 80px 0;
    background: var(--light-bg);
    padding: 60px 20px;
    border-radius: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.league-gallery h2 {
    text-align: center;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 250px;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.view-icon {
    font-size: 2rem;
    color: white;
}

/* Lightbox */
.photo-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    margin: 80px 0;
    padding: 60px 20px;
    text-align: center;
    background: white;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    width: 300px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.early-bird {
    border: 3px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: var(--transition);
}

.pricing-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    margin: 80px 0;
    background: var(--light-bg);
    padding: 60px 20px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 20px;
    margin: 80px auto 40px;
    max-width: 1200px;
    position: relative;
    z-index: 10;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 20px 50px;
    background: white;
    color: var(--primary-color);
}

/* Reveal on Scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Registration Form Styles */
.ace-fall-league-registration {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ace-fall-league-registration h2 {
    color: #ff6b35;
    margin-bottom: 20px;
}

.registration-info {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.registration-info ul {
    margin: 10px 0;
    padding-left: 20px;
}

.registration-info .early-bird {
    color: #28a745;
    font-weight: 600;
}

.notice {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.notice-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

fieldset {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

legend {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding: 0 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.15s ease-in-out;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #6c757d;
    font-size: 14px;
}

/* Practice preference disclaimer */
#practice_preference + small {
    color: #ff6b35;
    font-style: italic;
    margin-top: 8px;
}

/* School selection */
#player_school:disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

#player_school option[value="Other"] {
    font-style: italic;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 4px;
}

.required {
    color: #dc3545;
}

.payment-summary {
    background: #2c2c2c;
    background-image: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.payment-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

.payment-summary h3 {
    margin: 0 0 20px 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-line:last-of-type:not(.total) {
    border-bottom: none;
}

.summary-line span:first-child {
    color: #b0b0b0;
    font-weight: 400;
}

.summary-line span:last-child {
    color: #fff;
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

/* Highlight discounts */
#coupon-discount-line .summary-line span:last-child {
    color: #4caf50;
    font-weight: 600;
}

.summary-line.total {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    margin-top: 15px;
    padding-top: 20px;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
}

.summary-line.total span:first-child {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-line.total span:last-child {
    color: #ff6b35;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.button-primary {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.button-primary:hover {
    background: #e5602f;
}

.button-primary:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        padding: 15px 25px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .ace-fall-league-registration {
        padding: 0 15px;
    }
    
    fieldset {
        padding: 15px;
    }
}

/* Coupon Code Styles */
.coupon-input-group {
    display: flex;
    gap: 10px;
    align-items: start;
}

.coupon-input-group input {
    flex: 1;
}

.coupon-input-group .button {
    margin-top: 0;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.coupon-input-group .button:hover:not(:disabled) {
    background: #e55a2b;
}

.coupon-input-group .button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.coupon-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.coupon-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.coupon-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#remove_coupon {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    margin-left: 5px;
    transition: background 0.3s ease;
}

#remove_coupon:hover {
    background: #c82333;
}

#coupon-discount-line {
    color: #28a745;
}

#coupon-discount-amount {
    color: #28a745;
    font-weight: 600;
}

/* Stripe Card Fields */
#stripe-card-fields {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

#stripe-card-fields .form-group {
    margin-bottom: 15px;
}

.stripe-card-element {
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
    transition: border-color 0.15s ease-in-out;
}

.stripe-card-element.StripeElement--focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.stripe-card-element.StripeElement--invalid {
    border-color: #dc3545;
}

.stripe-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.stripe-info {
    margin-top: 15px;
    padding: 10px;
    background: #e3f2fd;
    border-radius: 4px;
    border-left: 4px solid #2196f3;
}

.stripe-info small {
    color: #1976d2;
    display: flex;
    align-items: center;
}

/* Countdown Timer Styles */
.early-bird-countdown {
    margin: 30px 0;
    text-align: center;
}

.early-bird-countdown h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 80px;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Registration Form Countdown Bar */
.registration-countdown-bar {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.countdown-bar-text {
    position: relative;
    z-index: 2;
    color: #856404;
    font-size: 16px;
}

.inline-countdown {
    font-weight: 600;
    color: #ff6b35;
}

.countdown-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 107, 53, 0.2);
}

.countdown-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    width: 100%;
    transition: width 1s linear;
}

/* Payment Summary Animations */
.payment-summary {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add subtle glow effect on hover */
.payment-summary:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    transition: box-shadow 0.3s ease;
}

/* Icon for payment summary */
.payment-summary h3::before {
    content: '💳';
    margin-right: 10px;
    font-size: 24px;
}

/* Responsive Payment Summary */
@media (max-width: 480px) {
    .payment-summary {
        padding: 20px;
        margin: 20px -10px;
        border-radius: 0;
    }
    
    .payment-summary h3 {
        font-size: 18px;
    }
    
    .summary-line {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .summary-line.total {
        font-size: 18px;
    }
    
    .summary-line.total span:last-child {
        font-size: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 10px 15px;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .early-bird-countdown h3 {
        font-size: 1rem;
    }
    
    .registration-countdown-bar {
        padding: 12px;
    }
    
    .countdown-bar-text {
        font-size: 14px;
    }
}

/* Schedule Section */
.schedule-section {
    margin: 80px 0;
    padding: 60px 20px;
    background: var(--light-bg);
    border-radius: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.schedule-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.schedule-card {
    background: white;
    border-radius: 15px;
    padding: 60px 40px 40px 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.schedule-card.practices::before {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

.schedule-card.games::before {
    background: linear-gradient(90deg, #2196F3, #03A9F4);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.schedule-icon {
    font-size: 3rem;
    text-align: center;
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 20px auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.schedule-card h3 {
    text-align: center;
    font-size: 1.8rem;
    color: white;
    background: var(--dark-color);
    padding: 50px 20px 20px 20px;
    margin: -60px -40px 30px -40px;
    border-radius: 15px 15px 0 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.schedule-card.practices h3 {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
}

.schedule-card.games h3 {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
}

.schedule-details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.schedule-details p strong {
    color: var(--dark-color);
    font-weight: 600;
}

.time-slots, .game-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.time-slots h4, .game-info h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.schedule-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-card ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.schedule-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.note {
    font-style: italic;
    font-size: 14px;
    color: #888;
    margin-top: 15px;
}

/* Jersey Options Styling */
.jersey-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.radio-option:hover {
    border-color: var(--primary-color);
    background: #fff5f0;
}

.radio-option input[type="radio"] {
    margin-right: 12px;
}

.radio-option input[type="radio"]:checked + .option-text {
    font-weight: 600;
    color: var(--primary-color);
}

.radio-option input[type="radio"]:checked ~ .option-text::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
}

.option-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.4;
}

#jersey-size-group {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* Waitlist Notice Styling */
.waitlist-notice {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 3px solid #ff6b35;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5); }
}

.waitlist-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.waitlist-notice h3 {
    color: white;
    margin: 0 0 15px 0;
    font-size: 1.8rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.waitlist-notice p {
    color: white;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.waitlist-notice p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.3rem;
}

/* Registration Full Notice */
.registration-full {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.registration-full h3 {
    color: #721c24;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}

.registration-full p {
    color: #721c24;
    margin: 0;
    font-size: 1.1rem;
}

/* Success Page Waitlist Position */
.waitlist-position {
    background: #fff3cd;
    color: #856404;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

/* Waiver Modal Styles */
.waiver-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.waiver-modal-content {
    background-color: #fefefe;
    margin: 20px auto;
    max-width: 800px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.waiver-modal-header {
    background: var(--dark-color);
    color: white;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.waiver-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
}

.waiver-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    line-height: 1;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.waiver-close:hover,
.waiver-close:focus {
    background: rgba(255, 255, 255, 0.2);
}

.waiver-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.waiver-content {
    line-height: 1.8;
    color: #333;
}

.waiver-content h3 {
    color: var(--primary-color);
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
}

.waiver-content p {
    margin: 15px 0;
    text-align: justify;
}

.waiver-content ul,
.waiver-content ol {
    margin: 15px 0 15px 30px;
}

.waiver-content li {
    margin: 8px 0;
}

.waiver-intro {
    background: #ffe0e0;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin: 0 0 20px 0 !important;
}

.waiver-acknowledgment {
    font-weight: 600;
    margin-top: 20px;
}

.waiver-date {
    text-align: center;
    margin: 30px 0 0 0 !important;
    font-size: 1.1rem;
}

.waiver-modal-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 12px 12px;
}

.waiver-accept {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.waiver-accept:hover {
    background: #e55525;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Waiver Link Styles */
.waiver-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.waiver-link:hover {
    color: #e55525;
}

.waiver-link.waiver-read {
    color: #4CAF50;
    text-decoration: none;
}

.waiver-checkbox {
    display: block;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.waiver-checkbox:hover {
    border-color: var(--primary-color);
    background: #fff5f0;
}

.waiver-checkbox.error-highlight {
    border-color: #dc3545;
    background: #ffe6e6;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.waiver-notice {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 8px;
    font-style: italic;
}

/* Modal open body style */
body.modal-open {
    overflow: hidden;
}

/* Payment Plan Styles */
.payment-plan-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.payment-plan-option {
    display: block;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
}

.payment-plan-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-plan-option input[type="radio"]:checked + .plan-details {
    border-color: var(--primary-color);
    background: #fff5f0;
}

.payment-plan-option input[type="radio"]:checked + .plan-details::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.plan-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.plan-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.plan-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 5px;
}

.payment-plan-notice {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.payment-plan-notice p {
    margin: 0 0 15px 0;
    font-weight: 600;
    color: var(--dark-color);
}

.payment-schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.payment-schedule-table th,
.payment-schedule-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.payment-schedule-table th {
    background: #e9ecef;
    font-weight: 600;
    color: var(--dark-color);
}

.payment-schedule-table tr:last-child td {
    border-bottom: none;
}

.payment-schedule-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .waiver-modal-content {
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .waiver-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .waiver-modal-body {
        padding: 20px;
        max-height: 70vh;
    }
}

/* Mobile responsive for schedule */
@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .schedule-card {
        padding: 30px 20px;
    }
    
    .schedule-section {
        padding: 40px 20px;
    }
    
    .schedule-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Countdown Urgent State */
.countdown-timer.urgent .countdown-item {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    animation: urgentPulse 1s ease-in-out infinite;
}

.countdown-timer.urgent .countdown-number {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.pulse-animation {
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(255, 107, 53, 0.3);
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.countdown-expired {
    font-size: 1.5rem;
    color: #dc3545;
    font-weight: 600;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    text-shadow: none;
}

/* Registration Success Page */
.ace-fall-league-success {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.success-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 40px;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease-out;
}

.success-title {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.success-content {
    display: grid;
    gap: 40px;
}

.confirmation-details h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.confirmation-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.confirmation-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #555;
}

.detail-value {
    color: var(--dark-color);
    font-weight: 500;
}

.payment-instructions {
    margin-top: 20px;
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
}

.payment-instructions h4 {
    margin-bottom: 15px;
    color: #856404;
}

.etransfer-details {
    background: white;
    padding: 15px;
    border-radius: 6px;
    margin-top: 10px;
}

.etransfer-details p {
    margin: 5px 0;
    color: #333;
}

.confirmation-note {
    text-align: center;
    padding: 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
}

/* Referral Section */
.referral-section {
    margin-top: 40px;
}

.referral-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.referral-card h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.referral-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.share-button.facebook {
    background: #3b5998;
}

.share-button.twitter {
    background: #1da1f2;
}

.share-button.email {
    background: #ff6b35;
}

.share-icon {
    font-size: 1.5rem;
}

.copy-link-section {
    max-width: 500px;
    margin: 0 auto;
}

.copy-link-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

#share-link {
    flex: 1;
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    background: white;
}

.copy-button {
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.copy-button:hover {
    background: #e5602f;
}

/* Next Steps */
.next-steps {
    margin-top: 60px;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
}

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

.step-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Success Actions */
.success-actions {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.success-actions .button {
    display: inline-block;
    padding: 15px 35px;
    margin: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.button-primary {
    background: var(--primary-color);
    color: white;
}

.button-primary:hover {
    background: #e5602f;
    transform: translateY(-2px);
}

.button-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Animations */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .success-title {
        font-size: 2rem;
    }
    
    .success-subtitle {
        font-size: 1.1rem;
    }
    
    .detail-row {
        flex-direction: column;
        text-align: left;
    }
    
    .detail-label {
        margin-bottom: 5px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
    
    .copy-link-container {
        flex-direction: column;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .success-actions .button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }
}