
/* ============================================================================
   Fair Play Collective - Modern Style CSS
   Clean, commented version with proper organization and structure
   ============================================================================ */

/* Reset and Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:before, 
*:after { 
    content: ''; 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1e2a3a 50%, #2a3b4d 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Color Variables for Consistency
   ========================================================================== */
:root {
    --primary-purple: rgba(208, 127, 224, 1);
    --primary-pink: rgba(240, 62, 130, 1);
    
    /* Gradient colors for manifesto sections */
    --pink-2: rgba(213, 116, 208, 1);
    --pink-3: rgba(219, 105, 192, 1);
    --pink-4: rgba(224, 94, 176, 1);
    --pink-5: rgba(229, 83, 161, 1);
    --pink-6: rgba(235, 73, 145, 1);
    
    /* Accent gradients */
    --accent-from: var(--primary-purple);
    --accent-to: var(--primary-pink);
}

/* Animated Background Elements
   ========================================================================== */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 100%;
    animation: float 20s infinite linear;
}

/* Individual background shapes with different positions and delays */
.bg-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.bg-shape:nth-child(3) {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

/* Floating animation for background shapes */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-30px) rotate(120deg); 
    }
    66% { 
        transform: translateY(15px) rotate(240deg); 
    }
}

/* Header and Navigation
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-pink);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #ff6b6b;
}

.search-icon, 
.settings-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-icon:hover, 
.settings-icon:hover {
    transform: scale(1.1);
}

/* Main Content Layout
   ========================================================================== */
main {
    padding-top: 10px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 2em;
    margin-right: 2em;
}

.hero {
    max-width: 800px;
}

/* Logo Container and Main Logo Styles
   ========================================================================== */
.logo-container {
    margin-bottom: 0;
    position: relative;
}

.main-logo {
    width: 600px;
    height: 300px;
    margin: auto;
    margin-top: 5em;
    margin-bottom: 1em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.logo-symbol {
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

/* Hero Section Typography
   ========================================================================== */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* Call-to-Action Buttons
   ========================================================================== */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 62, 130, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Social Media Icons Section
   ========================================================================== */
.socials-element {
    width: 100%;
    padding-bottom: 2em;
    color: var(--primary-purple);
    display: flex;
    justify-content: space-evenly;
}

.socials-element:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 62, 130, 0.4);
}

/* Content Blocks and Text Elements
   ========================================================================== */
.content-block {
    background: rgba(0, 0, 0, 0.1);
    min-width: 800px;
    margin-top: 2em;
    padding: 1em;
    padding-bottom: 0.5em;
    border-radius: 1em;
    background-size: cover;
    background-position: center;
    text-align: left;
}

/* Legacy support for existing IDs */
#home-text-element-light {
    background: cover;
    min-width: 800px;
    padding: 1em;
    padding-bottom: 0.5em;
    border-radius: 1em;
    background-size: cover;
    background-position: center;
    position: center;
}

.home-text-element-dark {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    min-width: 800px;
    margin-top: 2em;
    padding: 1em;
    padding-bottom: 0.5em;
    border-radius: 1em;
    background-size: cover;
    background-position: center;
    position: center;
}

/* Section Headers with Decorative Lines
   ========================================================================== */
.linerPurp {
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.linerPurp::after {
    content: '';
    flex-grow: 1;
    height: 3px;
    background: var(--primary-purple);
    min-width: 20px;
    margin: auto;
    margin-left: 20px;
}

.linerPink {
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.linerPink::after {
    content: '';
    flex-grow: 1;
    height: 3px;
    background: var(--primary-pink);
    min-width: 20px;
    margin: auto;
    margin-left: 20px;
}

/* Manifesto Section Headers with Progressive Colors */
.linerPink2 {
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.linerPink2::after {
    content: '';
    flex-grow: 1;
    height: 3px;
    background: var(--pink-2);
    min-width: 20px;
    margin: auto;
    margin-left: 20px;
}

.linerPink3 {
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.linerPink3::after {
    content: '';
    flex-grow: 1;
    height: 3px;
    background: var(--pink-3);
    min-width: 20px;
    margin: auto;
    margin-left: 20px;
}

.linerPink4 {
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.linerPink4::after {
    content: '';
    flex-grow: 1;
    height: 3px;
    background: var(--pink-4);
    min-width: 20px;
    margin: auto;
    margin-left: 20px;
}

.linerPink5 {
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.linerPink5::after {
    content: '';
    flex-grow: 1;
    height: 3px;
    background: var(--pink-5);
    min-width: 20px;
    margin: auto;
    margin-left: 20px;
}

.linerPink6 {
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.linerPink6::after {
    content: '';
    flex-grow: 1;
    height: 3px;
    background: var(--pink-6);
    min-width: 20px;
    margin: auto;
    margin-left: 20px;
}

/* Colored Text Spans
   ========================================================================== */
.purpleSpan {
    color: var(--primary-purple);
}

.pinkSpan {
    color: var(--primary-pink);
}

/* Progressive color spans for manifesto sections */
.ptpspan2 {
    color: var(--pink-2);
}

.ptpspan3 {
    color: var(--pink-3);
}

.ptpspan4 {
    color: var(--pink-4);
}

.ptpspan5 {
    color: var(--pink-5);
}

.ptpspan6 {
    color: var(--pink-6);
}

/* Manifesto Section Navigation Bar
   ========================================================================== */
.section-bar {
    display: flex;
    gap: 0; /* Single bar look */
    border-radius: 25px;
    overflow: hidden; /* Rounds the inner edges */
    margin: 1rem auto 2rem;
    max-width: min(1100px, 92vw);
}

/* Individual section navigation links */
.section-bar a {
    flex: 1 1 0;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 0.85rem 1rem;
    font-weight: 500;
    transition: background 0.25s ease, color 0.25s ease;
    position: relative;
}

/* Dividers between navigation segments */
.section-bar a + a {
    border-left: 2px solid rgba(255, 255, 255, 0.25);
}

/* Hover and focus states for navigation */
.section-bar a:hover,
.section-bar a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

/* Active section styling */
.section-bar a.active {
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    box-shadow: 0 8px 24px rgba(240, 62, 130, 0.35);
}

/* Underline accent for hover/active states */
.section-bar a::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 6px;
    height: 3px;
    border-radius: 2px;
    background: transparent;
    transition: background 0.25s ease;
}

.section-bar a:hover::after,
.section-bar a.active::after {
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
}

/* Content Sections (for FAQ, About, Contact pages)
   ========================================================================== */
.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: none;
}

.content-section.active {
    display: block;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* FAQ Specific Styling
   ========================================================================== */
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(240, 62, 130, 0.2);
}

.faq-item h3 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

/* FAQ List Styles */
.comparison-list p {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.accountability-list,
.benefits-list,
.early-backer-list,
.community-features,
.developer-support,
.ai-restrictions {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.accountability-list li,
.benefits-list li,
.early-backer-list li,
.community-features li,
.developer-support li,
.ai-restrictions li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accountability-list li::before {
    content: "✓";
    color: var(--primary-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefits-list li::before {
    content: "🎮";
    position: absolute;
    left: 0;
}

.early-backer-list li::before {
    content: "⭐";
    position: absolute;
    left: 0;
}

.community-features li::before {
    content: "📺";
    position: absolute;
    left: 0;
}

.developer-support li::before {
    content: "🤝";
    position: absolute;
    left: 0;
}

.ai-restrictions li::before {
    content: "❌";
    position: absolute;
    left: 0;
}

/* Contact Methods Styling */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(240, 62, 130, 0.2);
    text-align: center;
}

.contact-method h4 {
    color: var(--primary-pink);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-method p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Contact Information Section
   ========================================================================== */
.contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Manifesto Content Styling
   ========================================================================== */
.values-list,
.process-steps {
    margin-top: 1rem;
}

.value-item,
.step-item {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.value-item h4,
.step-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefits-list,
.zero-tolerance-list,
.enforcement-steps {
    list-style: none;
    padding-left: 0;
}

.benefits-list li,
.zero-tolerance-list li,
.enforcement-steps li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: "▶";
    color: var(--primary-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.zero-tolerance-list li::before {
    content: "✗";
    color: var(--primary-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.enforcement-steps li::before {
    content: "→";
    color: var(--pink-4);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Member Profiles (About Page)
   ========================================================================== */
.team-member {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(208, 127, 224, 0.2);
}

.member-header h3 {
    color: var(--primary-pink);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-title {
    color: var(--primary-purple);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-bio p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.member-bio p:last-child {
    margin-bottom: 0;
}

/* About Page Specific Sections
   ========================================================================== */
.approach-principles,
.involvement-options {
    margin-top: 1.5rem;
}

.principle-item,
.involvement-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-left: 3px solid var(--pink-3);
}

.principle-item h4,
.involvement-item h4 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    color: var(--pink-3);
}

.principle-item p,
.involvement-item p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Contact Information Section
   ========================================================================== */
.contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Newsletter Section
   ========================================================================== */
.newsletter-section {
    margin-top: 3rem;
    text-align: center;
}

.beehiiv-embed {
    max-width: 100%;
    border-radius: 10px;
}

/* Scroll Indicator
   ========================================================================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-10px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-5px); 
    }
}

/* Utility Animation Classes
   ========================================================================== */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

@keyframes rotate {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

/* Mobile Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .main-logo {
        width: 200px;
        height: 300px;
    }

    .logo-symbol {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .content-block,
    #home-text-element-light {
        min-width: auto;
        margin-left: 0;
        margin-right: 0;
    }

    main {
        margin-left: 1em;
        margin-right: 1em;
    }
}

/* Mobile navigation bar adjustments */
@media (max-width: 720px) {
    .section-bar {
        overflow-x: auto;
        scrollbar-width: none;
    }
    
    .section-bar::-webkit-scrollbar { 
        display: none; 
    }
    
    .section-bar a {
        flex: 0 0 auto; /* Keep segments readable */
        padding: 0.85rem 1.1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .main-logo {
        width: 150px;
        height: 200px;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        font-size: 0.7rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .main-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark mode adjustments (in case system preference changes) */
@media (prefers-color-scheme: light) {
    /* The design is inherently dark, but we could add light mode adjustments here if needed */
}

/* Print styles */
@media print {
    .bg-decoration,
    .search-icon,
    .settings-icon,
    .cta-buttons,
    .socials-element {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .content-section {
        display: block !important;
        break-inside: avoid;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-pink);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-secondary {
        border-width: 3px;
    }
    
    .bg-shape {
        background: rgba(255, 255, 255, 0.1);
    }
}


/* Contribution Section Styles
   ========================================================================== */
.contribution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    grid-area: cc1;
    min-width:0;
}
   .contribution-card1 {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    grid-area: cc1;
   
}
.contribution-card2 {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    grid-area: cc2;
   
}
.contribution-card3 {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    grid-area: cc3;
   
}
.contribution-card4 {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    grid-area: cc4;
   
}
.contribution-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(208, 127, 224, 0.5);
    transform: translateY(-2px);
}

.contribution-card.single-card {
    text-align: center;
    margin-bottom: 2rem;
    
}

.contribution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.contribution-card h3 {
    color: rgba(240, 62, 130, 1);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.contribution-card p {
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tier-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(208, 127, 224, 1);
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(240, 62, 130, 1);
     white-space: normal;         /* let it wrap */
  overflow-wrap: anywhere;     /* even aggressive wrapping if needed */

}

.admin-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid rgba(240, 62, 130, 1);
}

.admin-disclaimer h3 {
    color: rgba(240, 62, 130, 1);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.admin-disclaimer p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.admin-disclaimer ul {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.admin-disclaimer strong {
    color: rgba(240, 62, 130, 1);
}

.select-tier-btn {
    width: 100%;
    padding: 0.9rem;
    background: transparent;
    color: rgba(208, 127, 224, 1);
    border: 2px solid rgba(208, 127, 224, 1);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.select-tier-btn:hover {
    background: rgba(208, 127, 224, 0.1);
    transform: translateY(-1px);
}


/* Update the heart icon styling - REPLACE your existing .search-icon, .settings-icon section */
.search-icon, 
.settings-icon,
.heart-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.search-icon:hover, 
.settings-icon:hover,
.heart-icon:hover {
    transform: scale(1.1);
}

.heart-icon {
    color: var(--primary-pink);
}

.heart-icon:hover {
    color: var(--primary-purple);
}

/* Contributors Modal - ADD this as new section */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a3b4d 100%);
    margin: 5% auto;
    padding: 0;
    border: 2px solid rgba(208, 127, 224, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, rgba(208, 127, 224, 0.2), rgba(240, 62, 130, 0.2));
    padding: 1.5rem 2rem;
    border-bottom: 2px solid rgba(208, 127, 224, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--primary-pink);
    margin: 0;
    font-size: 1.8rem;
}

.close-modal {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-pink);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    max-height: calc(80vh - 100px);
    overflow-y: auto;
}

.contributors-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contributors-list {
    display: grid;
    gap: 0.75rem;
}

.contributor-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-purple);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contributor-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary-pink);
    transform: translateX(5px);
}

/* ============================================================================
   END OF STYLESHEET
   ============================================================================ */
