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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fbf5e8;
    color: #000;
    overflow-x: hidden;
    line-height: 1.6;
}

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

.hidden {
    display: none !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Impact', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

p {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fbf5e8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.loading-background-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.1;
    z-index: 1;
}

.bg-text-line {
    font-family: 'Impact', sans-serif;
    font-size: 4rem;
    color: #000;
    white-space: nowrap;
    margin: 5px 0;
    filter: blur(3px);
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
}

.loading-logo {
    margin-bottom: 40px;
}

.loading-logo img {
    width: 160px;
    height: 160px;
    object-fit: cover;
}

.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background-color: #ddd;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 15px;
    transition: width 0.3s ease;
}

.progress-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Impact', sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: bold;
}

.tagline-container {
    min-height: 60px;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #000;
    text-align: center;
    animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Background Text */
.background-text {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

.background-text .bg-text-line {
    font-size: 5rem;
    filter: blur(4px);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: #fbf5e8;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 30px;
    color: #000;
}

.hero-image {
    margin-bottom: 30px;
}

.hero-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.hero-tagline {
    font-family: 'Impact', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #000;
}

.hero-actions {
    max-width: 600px;
    margin: 0 auto;
}

.ca-container {
    display: flex;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ca-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: #fff;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border: none;
    background: #000;
    color: #fff;
    font-family: 'Impact', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #333;
}

.copy-btn img {
    width: 16px;
    height: 16px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.x-btn, .chart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-family: 'Impact', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.x-btn {
    background: #000;
    color: #fff;
}

.chart-btn {
    background: #000;
    color: #fff;
}

.x-btn:hover, .chart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.x-btn img, .chart-btn img {
    width: 20px;
    height: 20px;
}

.black-btn {
    background: #000;
    color: #fff;
}

/* Ticker Separator */
.ticker-separator {
    background: #000;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    align-items: center;
    animation: tickerScroll 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-content img {
    width: 24px;
    height: 24px;
    margin: 0 10px;
}

.ticker-content span {
    font-family: 'Impact', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 10px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f0f0f0;
}

.intro-image {
    margin-bottom: 40px;
}

.intro-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background-color: #fbf5e8;
}

.why-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.why-image {
    flex: 1;
    min-width: 300px;
}

.why-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-points {
    flex: 1;
    min-width: 300px;
}

.why-point {
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.why-point::before {
    display: none; /* This will remove the vertical lines */
}

.why-point h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 8px 15px;
    display: inline-block;
    border-radius: 5px;
}

.meme-history {
    position: relative;
}

.normie-point {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    max-width: 100%;
    margin-top: 20px;
}

.onboarding-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.normie-point h3 {
    color: #000;
    margin-bottom: 10px;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.gallery-subtitle {
    text-align: center;
    font-family: 'Impact', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000;
}

.gallery-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.gallery-container {
    position: relative;
    margin-bottom: 40px;
}

.gallery-wrapper {
    overflow: hidden;
    margin: 0 50px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav.next {
    right: 0;
}

.gallery-footer {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.modal-prev, .modal-next {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

/* Big 3 Section */
.big3-section {
    padding: 80px 0;
    background-color: #fbf5e8;
}

.big3-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #000;
}

.big3-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.big3-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.big3-item.reverse {
    flex-direction: row-reverse;
}

.big3-image {
    flex: 1;
}

.big3-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.big3-content {
    flex: 2;
}

.big3-content h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
}

.hof-section {
    background: rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-radius: 10px;
}

.hof-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #000;
}

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

.hof-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hof-item.reverse {
    flex-direction: row-reverse;
}

.hof-image {
    flex: 1;
}

.hof-image img {
    width: 100%;
    max-width: 128px;
    border-radius: 10px;
}

.hof-content {
    flex: 2;
}

.hof-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
}

.hof-content p {
    color: #000;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.timeline-image {
    margin-bottom: 40px;
    text-align: center;
}

.timeline-image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.timeline::before {
    display: none; /* Removes the vertical line */
}

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

.timeline-year {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-family: 'Impact', sans-serif;
    font-size: 2rem;
    color: #000;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 2;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    position: relative;
}

.timeline-content::before {
    display: none; /* Removes the bullet points */
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
}

.timeline-content p {
    color: #000;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fbf5e8;
}

.community-image {
    margin-bottom: 40px;
}

.community-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-content p {
    margin-bottom: 30px;
}

.community-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.community-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-family: 'Impact', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #000;
    color: #fff;
}

.community-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.community-btn img {
    width: 20px;
    height: 20px;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
    background: #111;
    color: #fff;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Impact', sans-serif;
    font-size: 1.5rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.footer-tagline {
    font-family: 'Impact', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    color: #fff;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .big3-item, .big3-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .hof-item, .hof-item.reverse {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .ca-container {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .why-content {
        flex-direction: column;
    }
    
    .gallery-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .community-actions {
        flex-direction: column;
    }
    
    .bg-text-line {
        font-size: 2.5rem;
    }
    
    .background-text .bg-text-line {
        font-size: 3rem;
    }
}

.x-btn, .chart-btn, .community-btn {
    text-decoration: none !important;
}

.x-btn:hover, .chart-btn:hover, .community-btn:hover {
    text-decoration: none !important;
}

a.x-btn, a.chart-btn, a.community-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}