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

:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-color);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: #666;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 450px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding: 3rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="60" r="20" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="80" r="12" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 400px;
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.hero-banner {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #d8b3ff;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
    border: 3px solid #d8b3ff;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(216, 179, 255, 0.4);
    background: #c89fff;
}

.cta-button.volunteer-btn {
    background: #ff9800;
    color: #000000;
    border: 3px solid #ff9800;
}

.cta-button.volunteer-btn:hover {
    background: #fb8c00;
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.cta-button.sponsor-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c3e50;
    border: 3px solid #ffd700;
}

.cta-button.sponsor-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffef9 0%, #fff9e6 100%);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '⚽';
    position: absolute;
    font-size: 250px;
    opacity: 0.03;
    bottom: -50px;
    right: -50px;
    animation: float 10s ease-in-out infinite;
    transform: rotate(-15deg);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-preview-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-preview-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.about-preview-right {
    padding: 2rem 0;
}

.about-preview-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-preview-tagline {
    font-size: 1.5rem;
    color: #ffa726;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-preview-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.about-preview-description strong {
    color: var(--dark-color);
}

.about-preview-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.preview-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #ffd700;
}

.preview-highlight:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
    border-left-color: #ffa726;
}

.highlight-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.highlight-text h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0 0 0.3rem 0;
    font-weight: 700;
}

.highlight-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.learn-more-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffa726 100%);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.learn-more-btn::before {
    content: '→';
    position: absolute;
    right: 30px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.learn-more-btn:hover::before {
    right: 25px;
}

/* Rules Preview Section */
.rules-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
}

.rules-preview::before {
    content: '⚽';
    position: absolute;
    font-size: 250px;
    opacity: 0.03;
    top: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite;
    transform: rotate(15deg);
}

.rules-preview-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rules-preview-left {
    padding: 2rem 0;
}

.rules-preview-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rules-preview-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(103, 126, 234, 0.3));
    animation: float 6s ease-in-out infinite;
}

.rules-preview-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.rules-preview-tagline {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.rules-preview-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.rules-preview-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.rules-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.rules-highlight:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(103, 126, 234, 0.2);
    border-left-color: #764ba2;
}

.rules-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.rules-text h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0 0 0.3rem 0;
    font-weight: 700;
}

.rules-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.view-rules-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(103, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.view-rules-btn::before {
    content: '→';
    position: absolute;
    right: 30px;
    transition: all 0.3s ease;
}

.view-rules-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(103, 126, 234, 0.5);
}

.view-rules-btn:hover::before {
    right: 25px;
}

/* Schedule Preview Section */
.schedule-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    position: relative;
    overflow: hidden;
}

.schedule-preview::before {
    content: '⚽';
    position: absolute;
    font-size: 250px;
    opacity: 0.03;
    bottom: -50px;
    right: -50px;
    animation: float 10s ease-in-out infinite;
    transform: rotate(-15deg);
}

.schedule-preview-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.schedule-preview-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-preview-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(76, 175, 80, 0.3));
    animation: float 6s ease-in-out infinite;
}

.schedule-preview-right {
    padding: 2rem 0;
}

.schedule-preview-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.schedule-preview-tagline {
    font-size: 1.5rem;
    color: #4caf50;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.schedule-preview-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.schedule-preview-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.schedule-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #4caf50;
}

.schedule-highlight:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);
    border-left-color: #2e7d32;
}

.schedule-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.schedule-text h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0 0 0.3rem 0;
    font-weight: 700;
}

.schedule-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.view-schedule-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.view-schedule-btn::before {
    content: '→';
    position: absolute;
    right: 30px;
    transition: all 0.3s ease;
}

.view-schedule-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
}

.view-schedule-btn:hover::before {
    right: 25px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fffaf0 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '⚽';
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    top: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.about-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: bold;
}

.about-intro {
    text-align: center;
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.about-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 4px solid transparent;
}

.about-card:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.card-blue {
    border-color: #4285f4;
}

.card-blue:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.card-green {
    border-color: #34a853;
}

.card-green:hover {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.card-orange {
    border-color: #fbbc04;
}

.card-orange:hover {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.card-purple {
    border-color: #ea4335;
}

.card-purple:hover {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

.card-corner {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    animation: pulse 1.5s ease-in-out infinite;
}

.icon-large {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
    display: inline-block;
}

.about-card:nth-child(1) .icon-large {
    animation-delay: 0s;
}

.about-card:nth-child(2) .icon-large {
    animation-delay: 0.2s;
}

.about-card:nth-child(3) .icon-large {
    animation-delay: 0.4s;
}

.about-card:nth-child(4) .icon-large {
    animation-delay: 0.6s;
}

.about-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: bold;
}

.kid-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.fun-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
    margin-top: 1rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    border: 2px solid #ffed4e;
}

/* Schedule Hero Section */
.schedule-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.schedule-hero::before {
    content: '⚽';
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    top: -40px;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.schedule-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.schedule-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Schedule Content Section */
.schedule-content {
    padding: 60px 0 80px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

/* Schedule Groups */
.schedule-group {
    margin-bottom: 4rem;
}

.group-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.group-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.group-title {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.group-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Card Grid Layouts */
.schedule-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.spirit-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

/* Base Schedule Card Styles */
.schedule-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

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

/* Card Header */
.card-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 2.5rem;
}

.card-icon-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0;
}

/* Card Content */
.card-content {
    padding: 0 1.5rem 1.5rem;
}

/* Info Card Styles */
.info-card {
    border-top: 4px solid #667eea;
}

.info-card:hover {
    border-top-color: #764ba2;
}

.venue-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.venue-address {
    color: #666;
    margin-bottom: 0.3rem;
}

.venue-type {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: #764ba2;
    gap: 0.7rem;
}

.map-link .arrow {
    transition: transform 0.3s ease;
}

.map-link:hover .arrow {
    transform: translateX(3px);
}

/* Info Row */
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-of-type {
    border-bottom: none;
}

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

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

/* Note and Warning Boxes */
.note-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #2e7d32;
}

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #e65100;
    font-weight: 600;
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Payment Card Styles */
.payment-card {
    border-top: 4px solid #ffa726;
}

.payment-card:hover {
    border-top-color: #fb8c00;
}

.payment-card.featured {
    position: relative;
    border: 3px solid #ffa726;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 167, 38, 0.3);
}

.time-badge {
    display: inline-block;
    background: #667eea;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price-display {
    text-align: center;
    margin: 1.5rem 0;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffa726;
    line-height: 1;
}

.price-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.3rem;
}

.session-duration {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
}

.late-fee-notice {
    background: #ffebee;
    border-left: 3px solid #e53935;
    padding: 0.75rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #c62828;
    font-weight: 600;
}

.equipment-note {
    background: #f5f5f5;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Payment Method Display */
.payment-method {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.payment-method:last-of-type {
    border-bottom: none;
}

.payment-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.payment-value {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
}

.payid-number {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    background: #f5f5f5;
    padding: 0.5rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.payment-instruction {
    background: #e3f2fd;
    border-left: 3px solid #2196f3;
    padding: 0.75rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #1565c0;
}

/* Spirit Card Styles */
.spirit-card {
    border-top: 4px solid #66bb6a;
}

.spirit-card:hover {
    border-top-color: #4caf50;
}

.spirit-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 4px solid #66bb6a;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    color: #2e7d32;
    line-height: 1.6;
}

/* Video Card Styles */
.video-card {
    border-top: 4px solid #ef5350;
}

.video-card:hover {
    border-top-color: #e53935;
}

.video-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: #1877f2;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-link:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.video-link svg {
    width: 20px;
    height: 20px;
}

/* Kids Fun Section */
.kids-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9e6 0%, #fffaeb 100%);
    position: relative;
    overflow: hidden;
}

.kids-section::before {
    content: '⚽';
    position: absolute;
    font-size: 120px;
    opacity: 0.05;
    top: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.kids-section::after {
    content: '⭐';
    position: absolute;
    font-size: 100px;
    opacity: 0.05;
    bottom: 15%;
    right: 8%;
    animation: float 5s ease-in-out infinite;
}

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

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

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

.kids-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.kids-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.superhero-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.kids-right {
    position: relative;
}

.kids-title {
    font-size: 2.8rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.fun-facts {
    display: grid;
    gap: 1.5rem;
}

.fun-fact {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.fun-fact:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #ffd700;
}

.fact-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

.fun-fact:nth-child(1) .fact-icon {
    animation-delay: 0s;
}

.fun-fact:nth-child(2) .fact-icon {
    animation-delay: 0.2s;
}

.fun-fact:nth-child(3) .fact-icon {
    animation-delay: 0.4s;
}

.fun-fact:nth-child(4) .fact-icon {
    animation-delay: 0.6s;
}

.fact-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.fact-content p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--light-color);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.benefits-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Rules Hero Section */
.rules-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: var(--white);
}

.rules-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.rules-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Rules Content Section */
.rules-content {
    padding: 60px 0 80px;
    background: var(--white);
}

.rules-content .container {
    max-width: 1000px;
}

.rules-intro-section {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 5px solid #667eea;
}

.rules-intro-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.rules-intro-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.rules-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e9ecef;
}

.rules-section:last-of-type {
    border-bottom: none;
}

.rules-section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 800;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #667eea;
}

.rule-item {
    margin-bottom: 2.5rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.rule-item:hover {
    background: #f1f3f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.rule-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.rule-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
}

.rule-content p:last-child {
    margin-bottom: 0;
}

.rule-content strong {
    color: #2c3e50;
    font-weight: 700;
}

.rule-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.rule-content ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
}

.rule-content ul li::before {
    content: '•';
    position: absolute;
    left: 0.75rem;
    color: #667eea;
    font-weight: bold;
    font-size: 1.3rem;
}

.rules-footer-note {
    margin-top: 4rem;
    padding: 2rem;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 8px;
}

.rules-footer-note p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #856404;
    margin-bottom: 0.75rem;
}

.rules-footer-note p:last-child {
    margin-bottom: 0;
}

.rules-contact {
    margin-top: 1rem;
    font-weight: 600;
}

.rules-contact a {
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
}

.rules-contact a:hover {
    text-decoration: underline;
}

/* Age Groups Section */
.age-groups {
    padding: 40px 0 80px 0;
    background: var(--light-color);
}

.age-groups h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.age-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.age-journey {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.age-level {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

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

.age-level.level-1 {
    border-top: 5px solid #4CAF50;
}

.age-level.level-2 {
    border-top: 5px solid #2196F3;
}

.age-level.level-3 {
    border-top: 5px solid #FF9800;
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.badge-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

.badge-star {
    font-size: 1.5rem;
    color: #FFD700;
}

.age-content h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.age-range-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.age-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.age-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.journey-arrow {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

/* Join Us Hero Section */
.join-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.join-hero::before {
    content: '⚽';
    position: absolute;
    font-size: 350px;
    opacity: 0.06;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(25deg);
    animation: float 12s ease-in-out infinite;
}

.join-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.join-hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Join Registration Section */
.join-registration {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.join-registration::before {
    content: '⚽';
    position: absolute;
    font-size: 400px;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(25deg);
    animation: float 15s ease-in-out infinite;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Superhero Content - Left Side */
.superhero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.superhero-content .superhero-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

.superhero-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    font-weight: 900;
    white-space: nowrap;
}

.superhero-content .fun-facts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.superhero-content .fun-fact {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.superhero-content .fun-fact:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.superhero-content .fact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.superhero-content .fact-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.superhero-content .fact-content p {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.95;
}

/* Registration Form - Right Side */
.registration-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.5);
}

.registration-form-wrapper h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Registration Type Selector */
.registration-type-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: #f5f5f5;
    border-radius: 12px;
}

.type-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-btn:hover {
    background: rgba(255,255,255,0.5);
    color: var(--dark-color);
}

.type-btn.active {
    background: var(--white);
    border-color: #667eea;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(103, 126, 234, 0.2);
}

.type-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.type-label {
    font-weight: 600;
}

.registration-form-wrapper .form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.registration-form-wrapper .contact-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    max-width: 100%;
}

/* Journey Section */
.journey-section {
    padding: 100px 0;
    background: var(--white);
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    position: relative;
    overflow: hidden;
}

.journey-main-title {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 900;
}

.journey-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 4rem;
    font-weight: 500;
}

.journey-path {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.journey-step {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

/* Step Marker */
.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.marker-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.journey-step:hover .marker-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.marker-icon {
    font-size: 3rem;
}

.marker-line {
    width: 4px;
    height: 100px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    margin-top: -10px;
    position: relative;
    z-index: 1;
}

.step-3 .marker-line {
    display: none;
}

/* Step Card */
.step-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.step-1 .step-card {
    border-color: #4ade80;
}

.step-2 .step-card {
    border-color: #60a5fa;
}

.step-3 .step-card {
    border-color: #fbbf24;
}

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

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-header h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 800;
}

.step-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-skills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-skills li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.skill-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '⚽';
    position: absolute;
    font-size: 250px;
    opacity: 0.08;
    top: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
    transform: rotate(15deg);
}

.contact::after {
    content: '🎯';
    position: absolute;
    font-size: 150px;
    opacity: 0.08;
    bottom: -30px;
    left: -30px;
    animation: float 6s ease-in-out infinite reverse;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    animation: pulse 3s ease-in-out infinite;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
    font-weight: 500;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    position: relative;
    border: 4px solid rgba(255,255,255,0.5);
}

.contact-form::before {
    content: '⭐';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

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

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #ffa500;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '⚡';
    position: absolute;
    left: 20px;
    font-size: 1.3rem;
    animation: bounce 1.5s ease-in-out infinite;
}

.submit-button::after {
    content: '⚡';
    position: absolute;
    right: 20px;
    font-size: 1.3rem;
    animation: bounce 1.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.submit-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 35px rgba(46, 204, 113, 0.6);
    background: linear-gradient(135deg, #3dd67d 0%, #2ecc71 100%);
}

.submit-button:active {
    transform: translateY(-2px) scale(1.01);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #1877f2;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-container {
        gap: 0.5rem;
    }

    .logo img {
        height: 40px;
    }

    .logo-title {
        font-size: 0.95rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-banner {
        max-width: 350px;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-preview-img {
        max-width: 320px;
    }

    .about-preview-title {
        font-size: 2.3rem;
    }

    .about-preview-tagline {
        font-size: 1.3rem;
    }

    .about-preview-description {
        font-size: 1.05rem;
    }

    .highlight-text h4 {
        font-size: 1.1rem;
    }

    .highlight-text p {
        font-size: 0.95rem;
    }

    .learn-more-btn {
        font-size: 1rem;
        padding: 14px 35px;
    }

    .rules-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .rules-preview-img {
        max-width: 320px;
    }

    .rules-preview-title {
        font-size: 2.3rem;
    }

    .rules-preview-tagline {
        font-size: 1.3rem;
    }

    .rules-preview-description {
        font-size: 1.05rem;
    }

    .rules-preview-highlights {
        grid-template-columns: 1fr;
    }

    .rules-text h4 {
        font-size: 1.1rem;
    }

    .rules-text p {
        font-size: 0.95rem;
    }

    .view-rules-btn {
        font-size: 1rem;
        padding: 14px 35px;
    }

    .schedule-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .schedule-preview-img {
        max-width: 320px;
    }

    .schedule-preview-title {
        font-size: 2.3rem;
    }

    .schedule-preview-tagline {
        font-size: 1.3rem;
    }

    .schedule-preview-description {
        font-size: 1.05rem;
    }

    .schedule-preview-highlights {
        grid-template-columns: 1fr;
    }

    .schedule-text h4 {
        font-size: 1.1rem;
    }

    .schedule-text p {
        font-size: 0.95rem;
    }

    .view-schedule-btn {
        font-size: 1rem;
        padding: 14px 35px;
    }

    .kids-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .superhero-img {
        max-width: 280px;
    }

    .kids-title {
        font-size: 2.2rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1.2rem;
    }

    .about-description {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .icon-large {
        font-size: 3.5rem;
    }

    .benefits h2,
    .age-groups h2,
    .contact h2 {
        font-size: 2rem;
    }

    .join-hero h1 {
        font-size: 2.5rem;
    }

    .join-hero-subtitle {
        font-size: 1.2rem;
    }

    .rules-hero h1 {
        font-size: 2.3rem;
    }

    .rules-hero-subtitle {
        font-size: 1.1rem;
    }

    .rules-section-title {
        font-size: 1.7rem;
    }

    .rule-item h3 {
        font-size: 1.3rem;
    }

    .rule-content p,
    .rule-content ul li {
        font-size: 1rem;
    }

    .rules-intro-section {
        padding: 2rem;
    }

    .rule-item {
        padding: 1.5rem;
    }

    .age-journey {
        flex-direction: column;
        gap: 1.5rem;
    }

    .journey-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .age-level {
        max-width: 100%;
    }

    .contact h2 {
        font-size: 2.2rem;
    }

    .contact-intro {
        font-size: 1.05rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .submit-button {
        font-size: 1.1rem;
        padding: 16px;
    }

    .submit-button::before,
    .submit-button::after {
        font-size: 1.1rem;
    }

    .schedule-hero h1 {
        font-size: 2.3rem;
    }

    .schedule-hero-subtitle {
        font-size: 1.1rem;
    }

    .group-icon {
        font-size: 2.5rem;
    }

    .group-title {
        font-size: 1.9rem;
    }

    .group-subtitle {
        font-size: 1rem;
    }

    .schedule-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .spirit-grid {
        grid-template-columns: 1fr;
    }

    .card-icon-header {
        padding: 1.2rem 1.2rem 0;
    }

    .card-icon {
        font-size: 2rem;
    }

    .card-icon-header h3 {
        font-size: 1.3rem;
    }

    .card-content {
        padding: 0 1.2rem 1.2rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .registration-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .superhero-title {
        font-size: 1.8rem;
    }

    .superhero-content .fact-content h3 {
        font-size: 1.3rem;
    }

    .superhero-content .fact-content p {
        font-size: 1rem;
    }

    .registration-form-wrapper {
        padding: 2rem;
    }

    .registration-form-wrapper h2 {
        font-size: 2rem;
    }

    .registration-type-selector {
        gap: 0.5rem;
        padding: 0.4rem;
    }

    .type-btn {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .type-icon {
        font-size: 1.3rem;
    }

    .registration-form-wrapper .form-intro {
        font-size: 1rem;
    }

    .journey-main-title {
        font-size: 2.2rem;
    }

    .journey-subtitle {
        font-size: 1.1rem;
    }

    .journey-step {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }

    .marker-circle {
        width: 80px;
        height: 80px;
    }

    .marker-icon {
        font-size: 2.5rem;
    }

    .marker-line {
        height: 80px;
    }

    .step-card {
        padding: 2rem;
    }

    .step-header h3 {
        font-size: 1.6rem;
    }

    .step-description {
        font-size: 1.1rem;
    }

    .step-skills li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 0.4rem;
    }

    .logo img {
        height: 35px;
    }

    .logo-title {
        font-size: 0.85rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-banner {
        max-width: 280px;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .about-preview-content {
        gap: 2rem;
    }

    .about-preview-img {
        max-width: 260px;
    }

    .about-preview-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    .about-preview-tagline {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .about-preview-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .preview-highlight {
        padding: 1rem;
    }

    .highlight-icon {
        font-size: 2rem;
    }

    .highlight-text h4 {
        font-size: 1.05rem;
    }

    .highlight-text p {
        font-size: 0.9rem;
    }

    .learn-more-btn {
        font-size: 0.95rem;
        padding: 13px 30px;
    }

    .learn-more-btn::before {
        right: 25px;
    }

    .learn-more-btn:hover::before {
        right: 20px;
    }

    .rules-preview-content {
        gap: 2rem;
    }

    .rules-preview-img {
        max-width: 260px;
    }

    .rules-preview-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    .rules-preview-tagline {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .rules-preview-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .rules-highlight {
        padding: 1rem;
    }

    .rules-icon {
        font-size: 2rem;
    }

    .rules-text h4 {
        font-size: 1.05rem;
    }

    .rules-text p {
        font-size: 0.9rem;
    }

    .view-rules-btn {
        font-size: 0.95rem;
        padding: 13px 30px;
    }

    .view-rules-btn::before {
        right: 25px;
    }

    .view-rules-btn:hover::before {
        right: 20px;
    }

    .schedule-preview-content {
        gap: 2rem;
    }

    .schedule-preview-img {
        max-width: 260px;
    }

    .schedule-preview-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    .schedule-preview-tagline {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .schedule-preview-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .schedule-highlight {
        padding: 1rem;
    }

    .schedule-icon {
        font-size: 2rem;
    }

    .schedule-text h4 {
        font-size: 1.05rem;
    }

    .schedule-text p {
        font-size: 0.9rem;
    }

    .view-schedule-btn {
        font-size: 0.95rem;
        padding: 13px 30px;
    }

    .view-schedule-btn::before {
        right: 25px;
    }

    .view-schedule-btn:hover::before {
        right: 20px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .icon-large {
        font-size: 3rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .superhero-img {
        max-width: 220px;
    }

    .kids-title {
        font-size: 1.8rem;
    }

    .fun-fact {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .about-grid,
    .age-grid {
        grid-template-columns: 1fr;
    }

    .rules-hero h1 {
        font-size: 2rem;
        padding: 0 15px;
    }

    .rules-hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .rules-intro-section {
        padding: 1.5rem;
    }

    .rules-intro-section h2 {
        font-size: 1.6rem;
    }

    .rules-intro-section p {
        font-size: 1rem;
    }

    .rules-section-title {
        font-size: 1.5rem;
    }

    .rule-item {
        padding: 1.25rem;
    }

    .rule-item h3 {
        font-size: 1.2rem;
    }

    .rule-content p {
        font-size: 0.95rem;
    }

    .rule-content ul li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .rules-footer-note {
        padding: 1.5rem;
    }

    .rules-footer-note p {
        font-size: 0.95rem;
    }

    .join-hero h1 {
        font-size: 2rem;
    }

    .join-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .contact h2 {
        font-size: 1.9rem;
    }

    .contact-intro {
        font-size: 1rem;
        padding: 0 10px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .submit-button {
        font-size: 1rem;
        padding: 15px;
    }

    .submit-button::before {
        left: 15px;
        font-size: 1rem;
    }

    .submit-button::after {
        right: 15px;
        font-size: 1rem;
    }

    .schedule-hero h1 {
        font-size: 2rem;
        padding: 0 15px;
    }

    .schedule-hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .schedule-hero::before {
        font-size: 120px;
    }

    .group-icon {
        font-size: 2.2rem;
    }

    .group-title {
        font-size: 1.7rem;
        padding: 0 10px;
    }

    .group-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .schedule-cards-grid {
        gap: 1.2rem;
    }

    .card-icon-header {
        padding: 1rem 1rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .card-icon {
        font-size: 1.8rem;
    }

    .card-icon-header h3 {
        font-size: 1.2rem;
    }

    .card-content {
        padding: 0 1rem 1rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .payid-number {
        font-size: 1.1rem;
        word-break: break-all;
    }

    .info-row {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    .registration-grid {
        gap: 2rem;
    }

    .superhero-title {
        font-size: 1.5rem;
    }

    .superhero-content .superhero-img {
        max-width: 250px;
    }

    .superhero-content .fact-icon {
        font-size: 2rem;
    }

    .superhero-content .fact-content h3 {
        font-size: 1.2rem;
    }

    .superhero-content .fact-content p {
        font-size: 0.95rem;
    }

    .superhero-content .fun-fact {
        padding: 1.2rem;
    }

    .registration-form-wrapper {
        padding: 1.5rem;
    }

    .registration-form-wrapper h2 {
        font-size: 1.8rem;
    }

    .registration-type-selector {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.4rem;
    }

    .type-btn {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .type-label {
        font-size: 0.9rem;
    }

    .registration-form-wrapper .form-intro {
        font-size: 0.95rem;
    }

    .journey-main-title {
        font-size: 1.9rem;
        padding: 0 10px;
    }

    .journey-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .journey-path {
        gap: 3rem;
    }

    .journey-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

    .marker-circle {
        width: 60px;
        height: 60px;
    }

    .marker-icon {
        font-size: 2rem;
    }

    .marker-line {
        height: 60px;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .step-header h3 {
        font-size: 1.4rem;
    }

    .step-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .step-skills li {
        font-size: 0.95rem;
    }

    .skill-icon {
        font-size: 1.3rem;
    }
}

/* Volunteer Page Styles */
.volunteer-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.volunteer-hero::before {
    content: '🤝';
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    top: -50px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.volunteer-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.volunteer-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.volunteer-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Why Volunteer Section */
.volunteer-why {
    padding: 80px 0;
    background: var(--light-color);
}

.volunteer-why h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.volunteer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.volunteer-benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid transparent;
}

.volunteer-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.volunteer-benefit-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

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

/* Volunteer Roles Section */
.volunteer-roles {
    padding: 80px 0;
    background: var(--white);
}

.volunteer-roles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.role-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.role-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.role-icon {
    font-size: 2.5rem;
}

.role-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.role-content {
    padding: 1.5rem;
}

.role-description {
    color: #555;
    margin-bottom: 1rem;
    font-weight: 500;
}

.role-tasks {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.role-tasks li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.role-tasks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.time-commitment {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #ddd;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Volunteer CTA Section */
.volunteer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: var(--white);
    text-align: center;
}

.volunteer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.volunteer-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.volunteer-cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.volunteer-cta-button.primary {
    background: var(--white);
    color: #6a11cb;
}

.volunteer-cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.volunteer-cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

.volunteer-cta-button.secondary:hover {
    background: var(--white);
    color: #6a11cb;
}

/* Responsive - Volunteer Page */
@media (max-width: 768px) {
    .volunteer-hero h1 {
        font-size: 2.2rem;
    }

    .volunteer-tagline {
        font-size: 1.2rem;
    }

    .volunteer-subtitle {
        font-size: 1rem;
    }

    .volunteer-benefits-grid,
    .roles-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .volunteer-cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .volunteer-hero {
        padding: 80px 0 60px;
    }

    .volunteer-hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* Sponsor Page Styles */
.sponsor-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    color: var(--dark-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sponsor-hero::before {
    content: '💰';
    position: absolute;
    font-size: 200px;
    opacity: 0.1;
    top: -50px;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.sponsor-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.sponsor-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sponsor-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Why Sponsor Section */
.sponsor-why {
    padding: 80px 0;
    background: var(--light-color);
    /* background: var(--white); */
}

.sponsor-why h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.sponsor-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sponsor-benefit-card {
    background: var(--white);
    /* background: var(--light-color); */
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid transparent;
}

.sponsor-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #ffd700;
}

.sponsor-benefit-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

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

/* Sponsorship Packages Section */
.sponsor-packages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sponsor-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.package-card.featured {
    border: 4px solid #ffd700;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    padding: 0.5rem 2.5rem;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.package-header {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.package-card.bronze .package-header {
    background: linear-gradient(135deg, #cd7f32 0%, #b36b27 100%);
}

.package-card.silver .package-header {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.package-card.gold .package-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--dark-color);
}

.package-card.platinum .package-header {
    background: linear-gradient(135deg, #e5e4e2 0%, #c9c9c9 100%);
    color: var(--dark-color);
}

.package-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.package-header h3 {
    font-size: 1.6rem;
    margin: 0.5rem 0;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.package-content {
    padding: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.package-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.package-impact {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #2e7d32;
}

/* In-Kind Sponsorship Section */
.sponsor-inkind {
    padding: 80px 0;
    background: var(--white);
}

.sponsor-inkind h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.inkind-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.inkind-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.inkind-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

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

/* Sponsor CTA Section */
.sponsor-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: var(--white);
    text-align: center;
}

.sponsor-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sponsor-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.sponsor-cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.sponsor-cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.sponsor-cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

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

.sponsor-contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.3);
}

.sponsor-contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* Responsive - Sponsor Page */
@media (max-width: 768px) {
    .sponsor-hero h1 {
        font-size: 2.2rem;
    }

    .sponsor-tagline {
        font-size: 1.2rem;
    }

    .sponsor-subtitle {
        font-size: 1rem;
    }

    .sponsor-benefits-grid,
    .packages-grid,
    .inkind-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .sponsor-hero {
        padding: 80px 0 60px;
    }

    .sponsor-hero h1 {
        font-size: 1.8rem;
    }

    .package-badge {
        font-size: 0.75rem;
        padding: 0.4rem 2rem;
    }
}
