/* Enhanced Sponsors Page Styles - No Gradients */
:root {
    --primary: #FFC107;
    --primary-dark: #FFA000;
    --primary-light: #FFD54F;
    --background: #0A0A0A;
    --background-light: #1E1E1E;
    --text: #F5F5F5;
    --text-muted: #B0B0B0;
    --card-bg: #1E1E1E;
    --card-hover: #2A2A2A;
    --accent: #4285F4;
    --accent-hover: #5A9CFF;
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
    --platinum: #E5E4E2;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Home Button */
.home-button-container {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
}

.home-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(30, 30, 30, 0.95);
    color: var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.home-button:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.home-button i {
    font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--background);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(66, 133, 244, 0.1) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-20px) translateY(-10px); }
    66% { transform: translateX(20px) translateY(10px); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Watermark */
.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.03;
    pointer-events: none;
}

.watermark-text {
    font-size: 15rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2rem;
    white-space: nowrap;
}

.watermark-pattern {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 193, 7, 0.02) 50px,
        rgba(255, 193, 7, 0.02) 100px
    );
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-title .highlight {
    display: block;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.hero-title .main-text {
    color: var(--text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: scrollDown 2s infinite;
    opacity: 0;
}

.scroll-indicator span:nth-child(1) { animation-delay: 0s; }
.scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollDown {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* Section Styles */
section {
    padding: 8rem 0;
    position: relative;
}

/* Section Watermarks */
.section-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
}

.watermark-icon {
    font-size: 20rem;
    color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Card Watermarks */
.card-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: rgba(255, 193, 7, 0.05);
    z-index: 0;
    pointer-events: none;
    transition: var(--transition);
}

/* About Section */
.about-section {
    background: var(--background-light);
}

.welcome-box {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.welcome-box:hover .card-watermark {
    color: rgba(255, 193, 7, 0.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.welcome-icon {
    font-size: 3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.welcome-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.welcome-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.about-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 193, 7, 0.3);
}

.about-card:hover .card-watermark {
    color: rgba(255, 193, 7, 0.1);
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
}

.about-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--primary);
    color: #000;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.about-card h3 {
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Audience Section */
.audience-section {
    background: var(--background);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.audience-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(66, 133, 244, 0.3);
}

.audience-card:hover .card-watermark {
    color: rgba(66, 133, 244, 0.1);
    transform: translate(-50%, -50%) scale(1.2) rotate(-10deg);
}

.audience-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--accent);
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

.audience-card h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.audience-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.stat {
    background: rgba(255, 193, 7, 0.2);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Benefits Section */
.benefits-section {
    background: var(--background-light);
}

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

.benefit-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(76, 175, 80, 0.3);
}

.benefit-card:hover .card-watermark {
    color: rgba(76, 175, 80, 0.1);
    transform: translate(-50%, -50%) scale(1.2) rotate(15deg);
}

.benefit-card .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--success);
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.benefit-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.benefit-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
}

/* Enhanced Sponsorship Tiers Section */
.enhanced-sponsorship-tiers {
    position: relative;
    padding: 8rem 0;
    background: var(--background);
    overflow: hidden;
    isolation: isolate;
}

.enhanced-sponsorship-tiers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(66, 133, 244, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: 0;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--gold);
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: var(--accent);
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: var(--platinum);
    animation-delay: 4s;
}

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

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Tier Watermarks */
.tier-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    transition: var(--transition);
}

.enhanced-tier-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid transparent;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    overflow: visible;
    cursor: pointer;
    transform: translateY(0);
    box-shadow: var(--shadow-lg);
    margin: 1rem; /* Add some margin to prevent badge cutoff */
}

.enhanced-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: var(--transition);
    border-radius: 24px;
    z-index: 1;
}

.enhanced-tier-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.enhanced-tier-card:hover::before {
    opacity: 1;
}

.enhanced-tier-card:hover .tier-watermark {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
}

.enhanced-tier-card.platinum {
    border-color: var(--platinum);
}

.enhanced-tier-card.platinum:hover {
    box-shadow: 0 25px 50px -12px rgba(229, 228, 226, 0.3);
}

.enhanced-tier-card.gold {
    border-color: var(--gold);
}

.enhanced-tier-card.gold:hover {
    box-shadow: 0 25px 50px -12px rgba(255, 215, 0, 0.3);
}

.enhanced-tier-card.silver {
    border-color: var(--silver);
}

.enhanced-tier-card.silver:hover {
    box-shadow: 0 25px 50px -12px rgba(192, 192, 192, 0.3);
}

.enhanced-tier-card.bronze {
    border-color: var(--bronze);
}

.enhanced-tier-card.bronze:hover {
    box-shadow: 0 25px 50px -12px rgba(205, 127, 50, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    overflow: visible;
}

/* Ribbon Base Styles */
.tier-badge {
    position: absolute;
    top: 15px;
    right: -15px;
    padding: 0.6rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    z-index: 10;
    text-align: center;
    letter-spacing: 1px;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    min-width: 120px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

/* Ribbon Pseudo-elements for 3D effect */
.tier-badge::before,
.tier-badge::after {
    content: '';
    position: absolute;
    top: 0;
    border-style: solid;
    border-width: 15px 10px;
    z-index: -1;
}

.tier-badge::before {
    right: 100%;
    border-color: transparent;
}

.tier-badge::after {
    left: 100%;
    border-color: transparent;
}

/* Ribbon Hover Effect */
.enhanced-tier-card:hover .tier-badge {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Premium Ribbon */
.tier-badge.premium {
    background: linear-gradient(135deg, #e5e4e2 0%, #c0c0c0 100%);
    color: #333;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
    right: -25px;
    top: 25px;
}

.tier-badge.premium::before {
    border-left-color: #c0c0c0;
    border-right-color: transparent;
    border-top-color: #c0c0c0;
    border-bottom-color: #c0c0c0;
}

.tier-badge.premium::after {
    border-right-color: #c0c0c0;
    border-left-color: transparent;
    border-top-color: #c0c0c0;
    border-bottom-color: #c0c0c0;
}

/* Featured (Gold) Ribbon */
.tier-badge.featured {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    color: #5e4200;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
    right: -25px;
    top: 25px;
}

.tier-badge.featured::before {
    border-left-color: #daa520;
    border-right-color: transparent;
    border-top-color: #daa520;
    border-bottom-color: #daa520;
}

.tier-badge.featured::after {
    border-right-color: #daa520;
    border-left-color: transparent;
    border-top-color: #daa520;
    border-bottom-color: #daa520;
}

/* Popular (Silver) Ribbon */
.tier-badge.popular {
    background: linear-gradient(135deg, #e6e6e6 0%, #c0c0c0 100%);
    color: #444;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
    right: -25px;
    top: 25px;
}

.tier-badge.popular::before {
    border-left-color: #c0c0c0;
    border-right-color: transparent;
    border-top-color: #c0c0c0;
    border-bottom-color: #c0c0c0;
}

.tier-badge.popular::after {
    border-right-color: #c0c0c0;
    border-left-color: transparent;
    border-top-color: #c0c0c0;
    border-bottom-color: #c0c0c0;
}

/* Starter (Bronze) Ribbon */
.tier-badge.starter {
    background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%);
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
    right: -25px;
    top: 25px;
}

.tier-badge.starter::before {
    border-left-color: #8b4513;
    border-right-color: transparent;
    border-top-color: #8b4513;
    border-bottom-color: #8b4513;
}

.tier-badge.starter::after {
    border-right-color: #8b4513;
    border-left-color: transparent;
    border-top-color: #8b4513;
    border-bottom-color: #8b4513;
}

/* Contact Section */
.contact-section {
    background: var(--background-light);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(66, 133, 244, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.contact-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.contact-email,
.contact-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.contact-email:hover,
.contact-phone:hover {
    transform: translateY(-3px);
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-email i,
.contact-phone i {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-email:hover i {
    transform: scale(1.2) translateY(-2px);
}

.contact-phone:hover i {
    transform: scale(1.2) translateY(-2px);
}

.copyright {
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-email,
    .contact-phone {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Update the float animation to work with ribbons */
@keyframes float {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-5px);
    }
}

.tier-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    transition: var(--transition);
    z-index: 2;
}

.enhanced-tier-card:hover .tier-icon {
    transform: scale(1.1) rotate(5deg);
}

.tier-icon.platinum {
    background: var(--platinum);
    color: #333;
    box-shadow: 0 0 20px rgba(229, 228, 226, 0.3);
}

.tier-icon.gold {
    background: var(--gold);
    color: #333;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.tier-icon.silver {
    background: var(--silver);
    color: #333;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.tier-icon.bronze {
    background: var(--bronze);
    color: #fff;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.3);
}

.tier-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
}

.tier-price.platinum {
    color: var(--platinum);
    text-shadow: 0 0 20px rgba(229, 228, 226, 0.3);
}

.tier-price.gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.tier-price.silver {
    color: var(--silver);
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.tier-price.bronze {
    color: var(--bronze);
    text-shadow: 0 0 20px rgba(205, 127, 50, 0.3);
}

.tier-features {
    list-style: none;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.tier-features li:hover {
    color: var(--text);
    transform: translateX(5px);
}

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

.tier-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.tier-cta {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    z-index: 2;
}

.tier-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.tier-cta:hover::before {
    left: 100%;
}

.tier-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tier-cta.platinum {
    background: var(--platinum);
    color: #333;
}

.tier-cta.gold {
    background: var(--gold);
    color: #333;
}

.tier-cta.silver {
    background: var(--silver);
    color: #333;
}

.tier-cta.bronze {
    background: var(--bronze);
    color: #fff;
}

.custom-package {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-top: 4rem;
}

.package-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    color: rgba(255, 193, 7, 0.05);
    z-index: 0;
    pointer-events: none;
    transition: var(--transition);
}

.custom-package:hover .package-watermark {
    color: rgba(255, 193, 7, 0.1);
    transform: translate(-50%, -50%) scale(1.1) rotate(10deg);
}

.custom-package::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 193, 7, 0.02) 50px,
        rgba(255, 193, 7, 0.02) 100px
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.custom-package h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.custom-package p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.custom-cta {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.custom-cta:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

/* Opportunities Section */
.opportunities-section {
    background: var(--background-light);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.opportunity-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 152, 0, 0.3);
}

.opportunity-card:hover .card-watermark {
    color: rgba(255, 152, 0, 0.1);
    transform: translate(-50%, -50%) scale(1.2) rotate(-15deg);
}

.opportunity-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--warning);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 3;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.3);
}

.opportunity-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--warning);
    color: #000;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.3);
}

.opportunity-card h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.opportunity-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.opportunity-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.benefit-tag {
    background: rgba(255, 152, 0, 0.2);
    color: var(--warning);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(244, 67, 54, 0.3);
}

.testimonial-card:hover .card-watermark {
    color: rgba(244, 67, 54, 0.1);
    transform: translate(-50%, -50%) scale(1.2) rotate(20deg);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    flex-grow: 1; /* Allow content to take available space */
}

.quote-icon {
    font-size: 2rem;
    color: var(--danger);
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    min-height: 80px; /* Ensure consistent height */
    align-items: flex-start; /* Align items to the top */
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 5px;
}

.author-avatar img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.author-info h4 {
    color: var(--text);
    margin-bottom: 0.25rem;
    font-size: 1rem; /* Slightly smaller font for long names */
    line-height: 1.3; /* Better line height for multi-line names */
    word-break: break-word; /* Ensure long words break properly */
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block; /* Ensure the title is on a new line */
    margin-top: 0.25rem; /* Add some space between name and title */
}

/* Featured Sponsor Badge */
.featured-sponsor {
    position: relative;
    overflow: visible;
}

.sponsor-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 5px 15px 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sponsor-badge i {
    color: #000;
    font-size: 1rem;
}

.featured-sponsor .testimonial-content {
    margin-top: 10px;
}

/* FAQ Section */
.faq-section {
    background: var(--background-light);
}

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

.faq-item {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    margin-bottom: 1rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 193, 7, 0.3);
}

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

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Data Animate */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple Effect */
.tier-cta, .custom-cta, .cta-button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tiers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .watermark-text {
        font-size: 12rem;
        letter-spacing: 1.5rem;
    }
}

@media (max-width: 768px) {
    .home-button-container {
        top: 1rem;
        left: 1rem;
    }
    
    .home-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .about-grid,
    .audience-grid,
    .benefits-grid,
    .opportunities-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .enhanced-tier-card {
        padding: 2rem;
    }
    
    .welcome-content {
        flex-direction: column;
        text-align: center;
    }
    
    .watermark-text {
        font-size: 8rem;
        letter-spacing: 1rem;
    }
    
    .watermark-icon {
        font-size: 15rem;
    }
    
    .card-watermark {
        font-size: 6rem;
    }
    
    .tier-watermark {
        font-size: 8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .enhanced-tier-card {
        padding: 1.5rem;
    }
    
    .tier-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tier-title {
        font-size: 1.5rem;
    }
    
    .tier-price {
        font-size: 1.75rem;
    }
    
    .custom-package {
        padding: 2rem;
    }
    
    .watermark-text {
        font-size: 6rem;
        letter-spacing: 0.5rem;
    }
    
    .watermark-icon {
        font-size: 12rem;
    }
    
    .card-watermark {
        font-size: 4rem;
    }
    
    .tier-watermark {
        font-size: 6rem;
    }
}

/* Loading Animation */
body.loaded .fade-in-up {
    opacity: 1;
    transform: translateY(0);
}