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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(34, 139, 34, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #90EE90;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-subtitle {
    font-size: 0.7rem;
    color: #90EE90;
    font-weight: 600;
    margin-top: -3px;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #90EE90;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #90EE90;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.inspiration-link {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.inspiration-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFFF00;
}

.inspiration-link i {
    color: #FFFF00;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #228B22 0%, #32CD32 50%, #90EE90 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-cover-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('cover.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(50%);
}

.hero-logo-container {
    position: relative;
    margin-bottom: 2rem;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #90EE90;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(144, 238, 144, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.toilet-paper-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.3) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: float 10s ease-in-out infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    margin-top: 2rem;
    line-height: 1.2;
    position: relative;
    z-index: 10;
}

.title-main {
    display: block;
}

.title-sub {
    display: block;
    font-size: 2.5rem;
    color: #FFFF00;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f0f8f0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #fff;
    color: #228B22;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
}

.stat-item.positive .stat-value {
    color: #90EE90;
}

.stat-item.negative .stat-value {
    color: #FF6B6B;
}

.hero-note {
    color: #f0f8f0;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.tp-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: stackFloat 3s ease-in-out infinite;
}

.tp-roll {
    font-size: 4rem;
    margin: -1rem 0;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.3));
    animation: rotate 5s linear infinite;
}

.tp-roll-2 {
    animation-delay: -1s;
}

.tp-roll-3 {
    animation-delay: -2s;
}

.ustp-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 800;
    color: #228B22;
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-shadow: none;
    border: 2px solid #228B22;
}

.crumpled-dollar {
    font-size: 3rem;
    margin-top: 2rem;
    opacity: 0.6;
    animation: crumple 4s ease-in-out infinite;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 10px rgba(0,255,136,0.5);
    background: linear-gradient(45deg, #00ff88, #32CD32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 10;
}

.section-title::after {
    content: '🧻';
    position: absolute;
    right: -50px;
    top: 0;
    font-size: 2rem;
    animation: spin 3s linear infinite;
}

/* Narrative Section */
.narrative {
    padding: 5rem 0;
    background: #fff;
}

.inspiration-banner {
    background: linear-gradient(135deg, #FFFF00, #FFD700);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFA500;
}

.inspiration-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.inspiration-content i {
    font-size: 2rem;
    color: #FF6B35;
    animation: pulse 2s ease-in-out infinite;
}

.inspiration-text {
    text-align: center;
}

.inspiration-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.inspiration-text span {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.inspiration-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.inspiration-link:hover {
    color: #E55A2B;
    border-bottom-color: #FF6B35;
    text-decoration: none;
}

.narrative-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.narrative-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.narrative-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.2);
    transition: transform 0.3s ease;
}

.story-image-container:hover {
    transform: translateY(-5px);
}

.story-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.meme-quote {
    background: linear-gradient(45deg, #228B22, #32CD32);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    border-left: 5px solid #FFFF00;
    margin: 0;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.chart-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chart-container h3 {
    text-align: center;
    color: #228B22;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.chart-bars {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.chart-bar {
    flex: 1;
    text-align: center;
}

.bar-fill {
    height: 100px;
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.usd-bar {
    background: linear-gradient(to top, #666, #999);
    height: 40px;
    animation: barGrow 2s ease-out;
}

.tp-bar {
    background: linear-gradient(to top, #228B22, #90EE90);
    height: 100px;
    animation: barGrow 2s ease-out 0.5s both;
}

.bar-label {
    font-weight: 600;
    color: #333;
}

.chart-caption {
    text-align: center;
    font-style: italic;
    color: #228B22;
    font-weight: 600;
}

.usd-devaluation-chart {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid #333;
}

.usd-devaluation-chart h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.chart-subtitle {
    text-align: center;
    color: #ccc;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.devaluation-container {
    position: relative;
    height: 300px;
    background: linear-gradient(to bottom, rgba(255,107,107,0.1) 0%, transparent 100%);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.chart-line {
    position: relative;
    width: 100%;
    height: 100%;
}

.chart-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FF6B6B;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-point:hover {
    transform: scale(1.5);
    background: #FFD700;
}

.data-point.current {
    background: #FFD700;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.data-point .year,
.data-point .value {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.data-point .year {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #ccc;
}

.data-point .value {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #FF6B6B;
    font-weight: 700;
}

.data-point:hover .year,
.data-point:hover .value {
    opacity: 1;
}

.chart-labels {
    position: absolute;
    left: -40px;
    top: 0;
    height: 100%;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.y-label {
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 600;
}

.devaluation-caption {
    text-align: center;
    margin: 0;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    border-left: 4px solid #FF6B6B;
}

.devaluation-caption strong {
    color: #FF6B6B;
    font-size: 1.1rem;
}

/* Token Details Section */
.token-details {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    overflow-x: hidden;
}

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

.token-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #228B22, #32CD32, #90EE90);
}

.token-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(34, 139, 34, 0.2);
    border-color: #90EE90;
}

.token-card h3 {
    color: #228B22;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: #666;
    flex: 0 0 40%;
}

.info-value {
    flex: 1;
    text-align: right;
    color: #333;
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contract-address {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: monospace;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 8px;
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
}

.copy-btn {
    background: #228B22;
    color: #fff;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #32CD32;
}

.link {
    color: #228B22;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link:hover {
    color: #32CD32;
    text-decoration: underline;
}

/* How to Buy Section */
.how-to-buy {
    padding: 5rem 0;
    background: #fff;
    overflow-x: hidden;
}

.buy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.buy-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    font-weight: 600;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #228B22;
    transition: all 0.3s ease;
}

.step:hover {
    background: #e8f5e8;
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(45deg, #228B22, #32CD32);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #228B22;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.buy-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    width: 100%;
}

.warning {
    background: linear-gradient(45deg, #FFF3CD, #FCF4A3);
    border: 2px solid #F0AD4E;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.warning i {
    color: #F0AD4E;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.warning p {
    margin: 0;
    color: #8A6D3B;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Community Section */
.community {
    padding: 5rem 0;
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: #fff;
}

.community-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    border-color: #90EE90;
}

.social-link i {
    font-size: 2rem;
}

.social-link span {
    font-weight: 600;
}

.twitter:hover {
    background: rgba(29, 161, 242, 0.3);
}

.telegram:hover {
    background: rgba(0, 136, 204, 0.3);
}

.discord:hover {
    background: rgba(114, 137, 218, 0.3);
}

.meme-gallery {
    text-align: center;
    margin-bottom: 3rem;
}

.meme-gallery h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.meme-gallery p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.meme-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.meme-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.2);
}

.meme-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.meme-item p {
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #228B22;
    background: rgba(255,255,255,0.9);
}

.events {
    text-align: center;
}

.event-teaser {
    background: linear-gradient(45deg, #FFFF00, #FFD700);
    color: #333;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    animation: glow 2s ease-in-out infinite alternate;
}

.event-teaser i {
    font-size: 2rem;
}

.event-teaser h4 {
    margin: 0;
    font-size: 1.3rem;
}

/* Disclaimer Section */
.disclaimer {
    padding: 4rem 0;
    background: #f8f9fa;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.legal-note {
    font-style: italic;
    color: #888;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-contact p,
.footer-copyright p {
    margin: 0;
    color: #ccc;
}

.footer-copyright {
    border-top: 1px solid #555;
    padding-top: 1rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes stackFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes crumple {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(0.95);
    }
    50% {
        transform: rotate(5deg) scale(0.9);
    }
    75% {
        transform: rotate(-3deg) scale(0.95);
    }
}

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes barGrow {
    0% {
        height: 0;
    }
    100% {
        height: var(--final-height, 100px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 255, 0, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-top: 0.5rem;
        margin-bottom: 2rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 0 0 15px rgba(0,255,136,0.6);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(34, 139, 34, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .inspiration-link {
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .title-sub {
        font-size: 2rem;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .narrative-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .token-grid {
        grid-template-columns: 1fr;
    }
    
    .buy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        flex-direction: row;
        padding: 1rem 2rem;
    }
    
    .meme-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title::after {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
    }
    
    .story-image {
        height: 200px;
    }
    
    .meme-image {
        height: 200px;
    }
    
    .warning {
        max-width: 100%;
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .warning i {
        margin-bottom: 0.5rem;
    }
    
    .contract-address {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .inspiration-banner {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .inspiration-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .inspiration-content i {
        font-size: 1.5rem;
    }
    
    .inspiration-text p {
        font-size: 1rem;
    }
    
    .inspiration-text span {
        font-size: 0.8rem;
    }
    
    .usd-devaluation-chart {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .usd-devaluation-chart h3 {
        font-size: 1.3rem;
    }
    
    .devaluation-container {
        height: 250px;
    }
    
    .chart-labels {
        left: -35px;
    }
    
    .data-point .year,
    .data-point .value {
        font-size: 0.7rem;
    }
    
    .devaluation-caption {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 1rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 0 0 20px rgba(0,255,136,0.7);
    }
    
    .hero .container {
        gap: 1.5rem;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .tp-roll {
        font-size: 3rem;
    }
    
    .ustp-logo {
        font-size: 1.2rem;
        padding: 0.3rem 0.8rem;
    }
    
    .token-card,
    .step {
        padding: 1rem;
    }
    
    .how-to-buy {
        padding: 3rem 0;
    }
    
    .warning {
        padding: 1rem;
        margin: 0 auto;
        max-width: calc(100vw - 30px);
    }
    
    .warning p {
        font-size: 0.8rem;
    }
    
    .contract-address {
        font-size: 0.7rem;
        padding: 0.8rem;
        word-break: break-all;
        text-align: center;
    }
    
    .step {
        padding: 1rem;
        margin: 0;
    }
    
    .step-content p {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .buy-actions {
        padding: 0;
        margin: 0;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        max-width: calc(100vw - 30px);
        box-sizing: border-box;
    }
    
    .logo-image {
        width: 24px;
        height: 24px;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }
    
    .story-image {
        height: 180px;
    }
    
    .image-overlay {
        padding: 1rem;
    }
    
    .image-overlay h3 {
        font-size: 1.2rem;
    }
    
    .meme-grid {
        grid-template-columns: 1fr;
    }
    
    .meme-image {
        height: 180px;
    }
    
    .token-details {
        padding: 3rem 0;
    }
    
    .info-item {
        flex-direction: column;
        text-align: left;
        gap: 0.5rem;
    }
    
    .info-value {
        text-align: left;
        word-break: break-all;
        overflow-wrap: break-word;
    }
    
    .info-label {
        font-size: 0.9rem;
    }
    
    .inspiration-banner {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .inspiration-text p {
        font-size: 0.9rem;
    }
    
    .inspiration-text span {
        font-size: 0.75rem;
    }
    
    .usd-devaluation-chart {
        padding: 1rem;
    }
    
    .usd-devaluation-chart h3 {
        font-size: 1.2rem;
    }
    
    .devaluation-container {
        height: 200px;
    }
    
    .chart-labels {
        left: -30px;
    }
    
    .data-point {
        width: 6px;
        height: 6px;
    }
    
    .data-point .year,
    .data-point .value {
        font-size: 0.6rem;
    }
    
    .devaluation-caption {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .chart-subtitle {
        font-size: 0.8rem;
    }
} 