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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    line-height: 1.4;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* ==========================================
   Section Header
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d26e);
    margin: 20px auto 0;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}

/* ==========================================
   Hero Section - ENHANCED
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(45, 62, 80, 0.85) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 30px;
}

.hero-badge {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #f4d26e;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    padding: 8px 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.1);
}

.hero-border {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto 30px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title-main {
    display: block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d26e 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 85px;
    letter-spacing: 0.02em;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #e8e8e8;
}

.hero-hours {
    display: inline-block;
    font-weight: 700;
    color: #d4af37;
    font-size: 32px;
    margin-top: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-label {
    font-size: 14px;
    color: #d4af37;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.info-value {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   Buttons - ENHANCED
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    min-width: 280px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 20px;
    transition: transform 0.4s;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d26e 100%);
    color: #1a2332;
    border: 2px solid transparent;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(212, 175, 55, 0.4),
            0 0 40px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 
            0 10px 40px rgba(212, 175, 55, 0.6),
            0 0 60px rgba(212, 175, 55, 0.4);
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
    width: 100%;
    min-width: auto;
}

/* ==========================================
   Scroll Indicator
   ========================================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 0.2em;
    animation: fade-in-out 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes fade-in-out {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ==========================================
   Animations
   ========================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

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

/* ==========================================
   Features Section
   ========================================== */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d26e);
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 15px;
}

.feature-text {
    color: #666;
    line-height: 1.8;
}

/* ==========================================
   Overview Section
   ========================================== */
.overview {
    padding: 100px 0;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-lead {
    font-size: 22px;
    font-weight: 500;
    color: #1a2332;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.8;
}

.overview-text p {
    margin-bottom: 25px;
    color: #555;
}

.overview-text strong {
    color: #d4af37;
    font-weight: 700;
}

/* ==========================================
   Recommend Section
   ========================================== */
.recommend {
    padding: 80px 0;
    background: #1a2332;
    color: #fff;
}

.recommend-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.recommend-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.recommend-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #d4af37;
    color: #1a2332;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.recommend-item p {
    font-size: 17px;
    line-height: 1.6;
}

.recommend-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   Event Info Section
   ========================================== */
.event-info {
    padding: 100px 0;
    background: #f8f9fa;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.event-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.event-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.event-card h3 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 20px;
}

.event-card p {
    color: #555;
    margin-bottom: 15px;
}

.event-card strong {
    color: #d4af37;
}

/* ==========================================
   Schedule Section
   ========================================== */
.schedule {
    padding: 100px 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #d4af37, transparent);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-time {
    flex-shrink: 0;
    width: 140px;
    font-weight: 700;
    color: #d4af37;
    text-align: right;
    padding-top: 5px;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 10px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 30px;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #f8f9fa;
}

.timeline-title {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    font-size: 15px;
}

/* ==========================================
   Content Section
   ========================================== */
.content {
    padding: 100px 0;
    background: #f8f9fa;
}

.content-list {
    max-width: 900px;
    margin: 0 auto;
}

.content-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4d26e);
    color: #1a2332;
    font-size: 28px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-body {
    flex: 1;
}

.content-title {
    font-size: 26px;
    color: #1a2332;
    margin-bottom: 20px;
}

.content-subtitle-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.content-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.content-lead {
    font-size: 19px;
    font-weight: 500;
    color: #1a2332;
    line-height: 1.7;
}

.content-text strong {
    color: #d4af37;
    font-weight: 700;
}

.content-emphasis {
    font-size: 18px;
    font-weight: 600;
    color: #1a2332;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    margin: 25px 0;
}

.content-subtitle {
    font-size: 22px;
    color: #1a2332;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.content-details {
    margin: 25px 0;
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item h5 {
    font-size: 18px;
    color: #1a2332;
    margin-bottom: 10px;
    font-weight: 700;
}

.detail-item p {
    color: #666;
    margin-bottom: 10px;
}

.detail-item ul {
    list-style: disc;
    padding-left: 30px;
    margin-top: 10px;
}

.detail-item li {
    color: #666;
    margin-bottom: 8px;
}

.content-conclusion {
    font-size: 17px;
    font-weight: 600;
    color: #1a2332;
    margin-top: 25px;
}

.content-text ul {
    list-style: disc;
    padding-left: 30px;
    margin: 20px 0;
}

.content-text li {
    color: #555;
    margin-bottom: 10px;
}

/* ==========================================
   Items Section
   ========================================== */
.items {
    padding: 80px 0;
}

.items-list {
    max-width: 700px;
    margin: 0 auto;
}

.item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.item-icon {
    flex-shrink: 0;
    font-size: 28px;
}

.item-text {
    flex: 1;
    color: #555;
    line-height: 1.7;
}

.item-text small {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #888;
}

.item-text a {
    color: #d4af37;
    text-decoration: underline;
}

/* ==========================================
   Tickets Section
   ========================================== */
.tickets {
    padding: 100px 0;
    background: #f8f9fa;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.ticket-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.ticket-card-highlight {
    border: 3px solid #d4af37;
}

.ticket-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #d4af37;
    color: #1a2332;
    padding: 8px 50px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.ticket-header {
    background: linear-gradient(135deg, #1a2332, #2d3e50);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.ticket-type {
    font-size: 28px;
    margin-bottom: 10px;
}

.ticket-location {
    font-size: 16px;
    color: #d4af37;
}

.ticket-body {
    padding: 30px;
}

.ticket-plans {
    margin-bottom: 25px;
}

.ticket-plan {
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}

.ticket-plan:last-child {
    border-bottom: none;
}

.plan-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
}

.plan-note {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.ticket-features {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.ticket-features h4 {
    font-size: 18px;
    color: #1a2332;
    margin-bottom: 15px;
}

.ticket-features ul {
    list-style: none;
}

.ticket-features li {
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.ticket-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
}

.ticket-payment {
    margin-top: 20px;
}

.ticket-payment p {
    color: #555;
    font-size: 15px;
    margin-bottom: 10px;
}

.ticket-note {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.ticket-warning {
    color: #e74c3c;
    font-size: 14px;
}

.ticket-footer {
    padding: 0 30px 30px;
}

.ticket-footer .btn-secondary {
    background: linear-gradient(135deg, #1a2332, #2d3e50);
    color: #fff;
    border: 2px solid #1a2332;
}

.ticket-footer .btn-secondary:hover {
    background: linear-gradient(135deg, #2d3e50, #1a2332);
    border-color: #d4af37;
}

.ticket-benefit {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.ticket-benefit h3 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 15px;
}

.ticket-benefit p {
    color: #555;
    line-height: 1.8;
}

/* ==========================================
   Profile Section
   ========================================== */
.profile {
    padding: 100px 0;
}

.profile-content {
    max-width: 900px;
    margin: 0 auto;
}

.profile-images {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.profile-image-single {
    width: 100%;
    max-width: 500px;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-image-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Legacy styles for compatibility */
.profile-image-main,
.profile-image-secondary {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-image-main:hover,
.profile-image-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.profile-name {
    text-align: center;
    margin-bottom: 40px;
}

.profile-name h3 {
    font-size: 32px;
    color: #1a2332;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 18px;
    color: #d4af37;
    font-weight: 500;
}

.profile-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.9;
}

.profile-artist {
    font-size: 18px;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-top: 30px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: #1a2332;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-contact {
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #d4af37;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #f4d26e;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .hero-badge {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-title-main {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-hours {
        font-size: 24px;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        min-width: auto;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 32px;
    }
    
    /* Features */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
        padding-left: 50px;
    }
    
    .timeline-time {
        width: auto;
        text-align: left;
    }
    
    .timeline-content::before {
        left: -38px;
    }
    
    /* Content */
    .content-item {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    /* Tickets */
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    /* Profile Images */
    .profile-images {
        justify-content: center;
    }
    
    .profile-image-single {
        max-width: 100%;
        height: 400px;
    }
    
    .profile-image-main,
    .profile-image-secondary {
        height: 400px;
    }
    
    /* Sections */
    .overview,
    .event-info,
    .schedule,
    .content,
    .profile {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-title-main {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 15px;
    }
}