/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #F4E4C1;
    --gold-dark: #B8941F;
    --gold-light: #FFF8E7;
    --dark-brown: #3E2723;
    --cream: #FFF9E6;
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background: linear-gradient(135deg, #FFF9E6 0%, #F5E6D3 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('crownacademy.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.2) 0%, 
        rgba(212,175,55,0.1) 50%, 
        rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.crown-badge {
    font-size: 80px;
    color: var(--gold-primary);
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
                 0 0 60px rgba(212, 175, 55, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)); }
    to { filter: drop-shadow(0 0 40px rgba(212, 175, 55, 1)); }
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.japanese-title {
    font-size: 36px;
    color: var(--gold-secondary);
    font-weight: 600;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid var(--gold-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.alert-icon {
    font-size: 24px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.limited-text {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #FFFFFF 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #E8E8E8;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.premium {
    border-color: #E8E8E8;
    background: #FFFFFF;
}

.special-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.card-crown {
    font-size: 40px;
    color: #C9A961;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 28px;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.price-details {
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gold-light);
}

.price-item .label {
    font-size: 16px;
    color: #666;
}

.price-item .price {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-brown);
}



.total-price {
    margin-top: 20px;
    padding: 20px;
    background: #FFF9F0;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-price .label {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-brown);
}

.total-price .amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-dark);
    min-width: 120px;
    text-align: right;
}

.note {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--cream) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--dark-brown);
    font-weight: 700;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.crown-icon {
    color: var(--gold-primary);
    font-size: 36px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gold-light);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card::before {
    content: attr(data-number);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    z-index: 0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.benefit-card.special-benefit {
    background: linear-gradient(135deg, var(--gold-light) 0%, white 100%);
    border-color: var(--gold-primary);
    border-width: 3px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.benefit-content {
    position: relative;
    z-index: 1;
}

.benefit-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.locations {
    color: var(--gold-dark);
    font-weight: 600;
    font-style: italic;
}

.special-note {
    background: var(--gold-light);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 600;
}

.limit {
    color: #FF6B6B;
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
}

.value-badge {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    color: var(--dark-brown);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border: 1px solid var(--gold-primary);
}

.guarantee {
    background: var(--gold-light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--gold-primary);
    font-weight: 600;
    color: var(--dark-brown);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-gold);
    position: relative;
    overflow: hidden;
}

.cta-section::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: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 40px;
}

.cta-button {
    background: white;
    color: var(--gold-dark);
    font-size: 20px;
    font-weight: 700;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--cream);
}

.cta-button i {
    font-size: 24px;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--gold-light);
    text-align: center;
    padding: 30px 0;
}

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.total-price .amount {
    animation: countUp 0.5s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 48px;
        letter-spacing: 4px;
    }
    
    .japanese-title {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    

    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .limited-badge {
        padding: 12px 25px;
    }
    
    .limited-text {
        font-size: 18px;
    }
}