/* General Styles */
:root {
    --red: #B22234;
    --white: #FFFFFF;
    --blue: #3C3B6E;
    --gold: #D4AF37;
    --dark-brown: #3A271D;
    --light-gray: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--light-gray);
    overflow-x: hidden;
    cursor: none; /* Hide default cursor */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--blue);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--red);
    margin: 1rem auto;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--blue);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    z-index: 9999;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    background-image: url('logo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    z-index: 9998;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s, visibility 0.8s;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    animation: pulse 2s infinite;
}

.loading-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    animation: flag-wave 15s ease-in-out infinite;
    filter: brightness(0.8) contrast(1.2);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
}

@keyframes flag-wave {
    0%, 100% {
        transform: scale(1.05) rotate(0deg);
    }
    50% {
        transform: scale(1) rotate(1deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fade-in 1s ease-out forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-title h2 {
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero-eagle {
    max-width: 300px;
    margin: 0 auto 2rem;
    animation: eagle-pulse 4s infinite;
}

.eagle-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
}

@keyframes eagle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--red);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    background-color: var(--blue);
}

.cta-button:hover::before {
    left: 100%;
}

/* Giga-Lore Section */
.giga-lore-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.giga-lore-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('banner.jpg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.stories-container {
    position: relative;
    z-index: 1;
}

.story-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.nav-arrow {
    background-color: var(--blue);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.nav-arrow:hover {
    background-color: var(--red);
    transform: scale(1.1);
}

.pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--blue);
    transform: scale(1.2);
}

.stories-slider {
    position: relative;
    overflow: hidden;
}

.story-card {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0 auto;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: card-fade-in 0.8s forwards;
}

@keyframes card-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-image {
    height: 300px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    color: var(--blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--dark-brown);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* How to Buy Section */
.how-to-buy-section {
    background-color: var(--blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-to-buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('banner.jpg');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.how-to-buy-content {
    position: relative;
    z-index: 1;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-right: 1rem;
    line-height: 1;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contract-address {
    text-align: center;
    margin-bottom: 2rem;
}

.address-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.address {
    font-family: monospace;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.copy-button {
    background-color: var(--gold);
    color: var(--dark-brown);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background-color: var(--white);
    transform: scale(1.1);
}

.dex-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.dex-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--red);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.dex-button:hover {
    background-color: var(--white);
    color: var(--red);
    transform: translateY(-3px);
}

/* Tokenomics Section */
.tokenomics-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('banner.jpg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.tokenomics-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tokenomics-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tokenomics-icon {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.tokenomics-card h3 {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tokenomics-card p {
    color: var(--dark-brown);
    font-size: 1.2rem;
}

/* Community Section */
.community-section {
    background-color: var(--red);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('banner.jpg');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.community-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.community-message {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.twitter-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1DA1F2;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.twitter-button i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.twitter-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('banner.jpg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-eagle {
        max-width: 200px;
    }
    
    .story-card {
        flex-direction: column;
    }
    
    .story-image {
        height: 200px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-eagle {
        max-width: 150px;
    }
    
    .cta-button, .dex-button, .twitter-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tokenomics-content, .steps-container {
        grid-template-columns: 1fr;
    }
}

/* Animation classes */
.animated {
    animation: fade-in 0.8s ease-out forwards;
}

@media (pointer: fine) {
    body {
        cursor: none;
    }
}

@media (pointer: coarse) {
    body {
        cursor: auto;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
}

/* Disable cursor on touch devices */
@media (hover: none) {
    body {
        cursor: auto;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
} 