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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 100%);
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
}

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

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: block;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ff69b4;
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #ff69b4;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.flag {
    font-size: 1.2em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

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

.nav-logo .logo-text {
    font-size: 1.8em;
    font-weight: 800;
    color: #ff69b4;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff69b4;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 999;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff69b4;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* center hero content horizontally */
    position: relative;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 50%, #fff0f5 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-hearts::before,
.floating-hearts::after {
    content: '💕';
    position: absolute;
    font-size: 2em;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.floating-hearts::before {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-hearts::after {
    top: 60%;
    right: 15%;
    animation-delay: -4s;
}

.floating-stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-stars::before,
.floating-stars::after {
    content: '✨';
    position: absolute;
    font-size: 1.5em;
    animation: sparkle 4s ease-in-out infinite;
    opacity: 0.4;
}

.floating-stars::before {
    top: 30%;
    right: 20%;
    animation-delay: -1s;
}

.floating-stars::after {
    bottom: 30%;
    left: 20%;
    animation-delay: -3s;
}

.hero-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.pig-container {
    position: relative;
    display: inline-block;
}

.pig-body {
    font-size: 8em;
    animation: bounce 2s ease-in-out infinite;
    display: inline-block;
}

.tom-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 5px solid #ff69b4;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
}

.tom-photo:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.4);
    border-color: #ff1493;
}

.sparkles {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2em;
    animation: rotate 3s linear infinite;
}

.speech-bubble {
    position: absolute;
    width: 110px;
    height: 75px;
    opacity: 0;
    pointer-events: none;
    z-index: 20; /* High z-index to appear above Tom's photo */
    transform: scale(0);
    transition: none; /* Remove transition to prevent conflicts with animation */
}

.speech-bubble.show {
    animation: bubblePop 2s ease-in-out forwards;
}

.speech-bubble svg {
    width: 100%;
    height: 100%;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line1,
.title-line2,
.title-line3 {
    display: block;
    font-weight: 800;
    line-height: 1.1;
}

.title-line1 {
    font-size: 2.5em;
    color: #ff69b4;
    margin-bottom: 10px;
    animation: slideInLeft 1s ease-out;
}

.title-line2 {
    font-size: 3.5em;
    background: linear-gradient(45deg, #ff69b4, #ff1493, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: slideInRight 1s ease-out 0.2s both;
}

.title-line3 {
    font-size: 2em;
    color: #9370db;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.3em;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #9370db, #8a2be2);
    color: white;
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(147, 112, 219, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    animation: fadeIn 1s ease-out 1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2em;
    font-weight: 800;
    color: #ff69b4;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    margin-top: 30px;
    animation: fadeIn 1s ease-out 1.2s both;
}

/* Removed duplicate CA button rules - see clean version at end of file */

/* Removed duplicate CA button rules - see clean version at end of file */

/* Removed duplicate CA button rules - see clean version at end of file */

.address {
    font-family: 'Courier New', monospace;
    background: transparent;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: 600;
    border: none;
    word-break: break-all;
    max-width: 100%;
    display: inline-block;
    min-width: 0;
    flex: 1;
    text-align: center;
}

.copy-tooltip { display: none !important; }

.scroll-indicator {
    position: static; /* now inside .hero-container flow */
    margin: 112px auto 0; /* add more space below CA */
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 2;
    width: fit-content;
    text-align: center;
}

.scroll-arrow {
    font-size: 2.5em;
    color: #ff69b4;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.scroll-indicator::before {
    content: '🐽';
    font-size: 2em;
    opacity: 1;
    animation: float 2s ease-in-out infinite;
    display: block;
    margin-bottom: 8px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3em;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
    position: relative;
}

.title-decoration {
    font-size: 2em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2em;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: white;
}

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

.about-card {
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff69b4, #9370db);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.about-card:hover::before {
    opacity: 0.1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.about-card > * {
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.about-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* TikTok Section */
.tiktok-section {
    margin-top: 60px;
    text-align: center;
}

.tiktok-title {
    font-size: 2em;
    font-weight: 700;
    color: #ff69b4;
    margin-bottom: 30px;
    position: relative;
}

.tiktok-title::before {
    content: '🎬';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    animation: bounce 2s infinite;
}

.tiktok-title::after {
    content: '🎬';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    animation: bounce 2s infinite;
    animation-delay: 1s;
}

.tiktok-embed-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 100%;
}

.tiktok-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.tiktok-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.3);
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 100%);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.tokenomics-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.card-header .card-icon {
    font-size: 2.5em;
}

.card-header h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: #2d3748;
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.info-row:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #4a5568;
}

.value {
    font-weight: 700;
    color: #ff69b4;
    font-size: 1.1em;
}

.distribution-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chart-bar {
    height: 30px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.chart-label {
    font-weight: 600;
    color: #2d3748;
    min-width: 120px;
}

/* How to Buy Section */
.how-to-buy {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff69b4, #9370db);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.step-card:hover::before {
    opacity: 0.1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
    border-color: #ff69b4;
}

.step-card > * {
    position: relative;
    z-index: 2;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: 800;
    line-height: 50px;
    margin-bottom: 15px;
}

.step-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.step-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wallet-links, .dex-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.wallet-btn, .dex-btn {
    background: linear-gradient(45deg, #9370db, #8a2be2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.wallet-btn:hover, .dex-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 112, 219, 0.3);
}

.contract-info {
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 105, 180, 0.2);
}

.contract-info h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.contract-copy-btn {
    background: white;
    border: 3px solid #ff69b4;
    border-radius: 30px;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #ff69b4;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.contract-copy-btn:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
    border-color: #ff1493;
}

.contract-address-text {
    font-size: 1em;
    word-break: break-all;
    font-weight: 600;
}

/* Transparency Section */
.transparency {
    background: white;
}

.transparency-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin-bottom: 60px !important;
}

.transparency-card {
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.transparency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
    border-color: #ff69b4;
}

.transparency-card .card-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.transparency-card h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.metric-value {
    font-size: 2.5em !important;
    font-weight: 800 !important;
    color: #ff69b4 !important;
    margin-bottom: 5px !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: initial !important;
    position: relative !important;
    width: auto !important;
    max-width: none !important;
}

.metric-label {
    font-size: 0.9em;
    color: #718096;
    margin-bottom: 10px;
}

.metric-change {
    font-size: 0.9em;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
}

.metric-change.positive {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
}

.donation-history {
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 100%);
    padding: 40px;
    border-radius: 20px;
}

.donation-history h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
}

.donation-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.donation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.donation-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.1);
}

.donation-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.donation-recipient {
    font-weight: 700;
    color: #2d3748;
}

.donation-date {
    font-size: 0.9em;
    color: #718096;
}

.donation-amount {
    font-size: 1.3em;
    font-weight: 800;
    color: #ff69b4;
}

/* Memes Section */
.memes {
    background: linear-gradient(135deg, #fff0f5 0%, #ffeef8 100%);
    padding: 80px 0;
    text-align: center;
}

.memes-content {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.memes-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
    width: auto;
    max-width: 280px;
    justify-content: center;
    margin: 0 auto;
}

.memes-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
    color: white;
}

.memes-btn i {
    font-size: 1.2em;
}

/* Mobile meme button styling */
@media (max-width: 768px) {
    .memes-content {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .memes-btn {
        width: auto !important;
        max-width: 280px !important;
        padding: 15px 30px !important;
        font-size: 1.1em !important;
        justify-content: center !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 0 auto !important;
    }
}

/* Community Section */
.community {
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 100%);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
    min-height: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-link i {
    font-size: 3em;
    transition: all 0.3s ease;
    line-height: 1;
}

.social-emoji {
    font-size: 3em;
    transition: all 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1em;
}

.social-link span {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1em;
}

.social-link.telegram i {
    color: #0088cc;
}

.social-link.twitter i {
    color: #1da1f2;
}

.social-link.tiktok i {
    color: #000000;
}

.social-link.dexscreener .social-emoji {
    color: #ff6b35;
}

.social-link:hover i,
.social-link:hover .social-emoji {
    transform: scale(1.2);
}

/* Disclaimer styling */
.disclaimer {
    margin-top: 20px;
    text-align: center;
}

.disclaimer p {
    color: #a0aec0;
    font-size: 0.9em;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    font-size: 2em;
    font-weight: 800;
    color: #ff69b4;
    margin-bottom: 15px;
    display: block;
}

.footer-logo p {
    color: #a0aec0;
    font-size: 1.1em;
}

.footer-links {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
}

.footer-section h4 {
    font-size: 1.2em;
    font-weight: 700;
    color: #ff69b4;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff69b4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

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

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

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Browser Compatibility */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Fix for iOS Safari viewport */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .transparency-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(20px);
        padding: 30px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .language-toggle {
        position: fixed;
        top: 20px;
        right: 80px; /* Position it next to hamburger menu */
        z-index: 1001;
        display: block;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.9em;
    }
    
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    /* Ensure all content fits within viewport */
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Fix any elements that might cause horizontal scroll */
    * {
        box-sizing: border-box;
    }
    
    /* Removed duplicate mobile CA button rules - see clean version at end of file */
    
    .hero-container {
        padding: 0 15px;
    }
    
    .pig-body {
        font-size: 6em;
    }
    
    .title-line1 {
        font-size: 2em;
    }
    
    .title-line2 {
        font-size: 2.5em;
    }
    
    .title-line3 {
        font-size: 1.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .about-grid,
    .tokenomics-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .transparency-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .tiktok-title::before,
    .tiktok-title::after {
        display: none; /* Hide decorative elements on mobile */
    }
    
    .tom-photo {
        width: 200px;
        height: 200px;
        margin-top: 20px;
    }
    
    .side-hovering-tom img {
        width: 80px;
        height: 80px;
    }
    
    .side-hovering-tom {
        display: none; /* Hide floating Toms on mobile to prevent overlay issues */
    }
    
    .speech-bubble {
        width: 70px;
        height: 50px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .pig-body {
        font-size: 4em;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .title-line1, .title-line2, .title-line3 {
        font-size: 1.1em;
    }
    
    .metric-value {
        font-size: 2em;
    }
    
    .transparency-card {
        padding: 20px;
    }
    
    .language-toggle {
        top: 20px;
        right: 75px; /* Position it next to hamburger menu */
    }
    
    .lang-btn {
        padding: 5px 10px;
        font-size: 0.8em;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.8em;
    }
    
    .title-line1, .title-line2, .title-line3 {
        font-size: 0.9em;
    }
    
    .metric-value {
        font-size: 1.8em;
    }
    
    .transparency-card {
        padding: 15px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .tom-photo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    
    .hero-pig {
        flex: 0 0 200px;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
}
    
    .title-line1 {
        font-size: 1.5em;
    }
    
    .title-line2 {
        font-size: 2em;
    }
    
    .title-line3 {
        font-size: 1.2em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .transparency-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-value {
        font-size: 2em;
    }
    
    .about-card,
    .tokenomics-card,
    .transparency-card,
    .step-card {
        padding: 25px;
    }
    
    .contract-copy-btn {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 20px;
        font-size: 1em;
    }
    
    /* Removed conflicting contract-btn rule - see clean version at end of file */
    
    .contract-text {
        flex-direction: column;
        font-size: 1em;
        gap: 8px;
        text-align: center;
    }
    
    .address {
        font-size: 0.8em;
        padding: 4px 8px;
        word-break: break-all;
        max-width: 100%;
    }
    
    /* Fix scroll indicator positioning on mobile */
    .scroll-indicator {
        position: static;
        margin: 30px auto 0;
        width: auto;
        left: auto;
        right: auto;
        transform: none;
    }
    
    .scroll-indicator::before {
        font-size: 1.8em;
    }
    
    .scroll-arrow {
        font-size: 2em;
    }


/* Additional kawaii elements */
.kawaii-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><text y="18" font-size="18">🐷</text></svg>'), auto;
}

/* Extra cute button effects */
.btn::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2em;
    opacity: 0;
    transition: all 0.3s ease;
    animation: twinkle 2s infinite;
}

.btn:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Kawaii section decorations */
.section-header::before {
    content: '🌸';
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 2em;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.section-header::after {
    content: '🌸';
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 2em;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite reverse;
}

/* Cute card hover effects */
.about-card:hover,
.tokenomics-card:hover,
.transparency-card:hover {
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
}

.about-card:hover::after,
.tokenomics-card:hover::after,
.transparency-card:hover::after {
    content: '💖';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 1.5em;
    animation: heartBeat 0.6s ease-in-out;
}

/* Pig snout decorations */
.hero-pig::before {
    content: '🐽';
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 1.5em;
    opacity: 0.6;
    animation: bounce 3s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-pig::after {
    content: '🐽';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 1.5em;
    opacity: 0.6;
    animation: bounce 3s ease-in-out infinite;
    animation-delay: 2s;
}

/* Kawaii navigation */
.nav-menu a:hover {
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

/* Extra cute social links */
.social-link:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.3);
}

.social-link:hover::before {
    content: '🐷';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2em;
    animation: bounce 0.6s ease-in-out;
}

/* Cute loading animation for metrics - removed duplicate definition */

.metric-value::before {
    content: '✨';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmerMetric 3s infinite;
}

/* Kawaii scroll indicator - removed duplicate */

/* Extra cute footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff69b4, #ff1493, #da70d6, #9370db);
    animation: rainbow-border 3s linear infinite;
}

/* Pig trail effect */
.pig-trail {
    position: fixed;
    pointer-events: none;
    font-size: 1.2em;
    z-index: 9999;
    animation: pigTrail 2s ease-out forwards;
}

/* Side-hovering Tom costumes */
.side-hovering-tom {
    position: absolute;
    z-index: 1;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gentleFloat 4s ease-in-out infinite;
    pointer-events: none;
}

.side-hovering-tom img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(255, 105, 180, 0.4));
    transition: all 0.3s ease;
    border-radius: 15px;
}

.side-hovering-tom:hover {
    opacity: 1;
    transform: scale(1.1);
}

.side-hovering-tom:hover img {
    filter: drop-shadow(0 12px 30px rgba(255, 105, 180, 0.6));
    transform: rotate(5deg);
}

/* More kawaii animations */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes shimmerMetric {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes rainbow-border {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes pigTrail {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
}

@keyframes floatDown {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes bubblePop {
    0% {
        transform: scale(0) rotate(-10deg);
        opacity: 0;
    }
    15% {
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }
    85% {
        transform: scale(1) rotate(-2deg);
        opacity: 1;
    }
    100% {
        transform: scale(0) rotate(5deg);
        opacity: 0;
    }
}

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

@keyframes tomBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(-5deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    75% {
        transform: scale(1.15) rotate(-3deg);
    }
}

/* Hover effects for interactive elements */
.btn, .social-link, .about-card, .transparency-card, .contract-btn, .contract-copy-btn, .nav-menu a, .footer-section a, .wallet-btn, .dex-btn, .hamburger {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><text y="18" font-size="18">🐽</text></svg>'), pointer;
}

/* Specific hover states for better UX */
.btn:hover, .social-link:hover, .contract-btn:hover, .contract-copy-btn:hover, .nav-menu a:hover, .footer-section a:hover, .wallet-btn:hover, .dex-btn:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><text y="18" font-size="18">🐽</text></svg>'), pointer;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(255, 105, 180, 0.3);
    color: #2d3748;
}

::-moz-selection {
    background: rgba(255, 105, 180, 0.3);
    color: #2d3748;
}

/* CLEAN CA BUTTON STYLES - Single source of truth */
.contract-btn {
    background: white;
    border: 3px solid #ff69b4;
    border-radius: 30px;
    color: #ff69b4;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
    font-size: 1.28em;
}

.contract-btn:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-3px);
}

.contract-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 3px;
    flex-wrap: nowrap;
}

.contract-text .address {
    flex: 1 1 auto;
    text-align: center;
    white-space: nowrap;
    min-width: 0;
}

.contract-text span:first-child {
    flex: 0 0 auto;
}

.contract-text i {
    flex: 0 0 auto;
}

/* Hero CA button - compact styling - HIGHEST PRIORITY - DESKTOP ONLY */
@media (min-width: 769px) {
    .hero .contract-btn {
        min-width: 560px !important;
        padding: 13px 12px !important;
        background: white !important;
        border: 3px solid #ff69b4 !important;
        border-radius: 30px !important;
        color: #ff69b4 !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3) !important;
        font-size: 1.28em !important;
    }
}

.hero .contract-btn:hover {
    background: #ff69b4 !important;
    color: white !important;
    transform: translateY(-3px) !important;
}

/* Bottom CA button - horizontal layout */
.contract-copy-btn {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.contract-copy-btn .contract-address-text {
    white-space: nowrap !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contract-btn {
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        padding: 12px 8px;
        font-size: 0.85em;
        min-width: auto;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .contract-text {
        justify-content: center;
        column-gap: 4px;
        text-align: center;
        flex-wrap: nowrap;
    }
    
    .contract-text .address {
        text-align: center;
        font-size: 0.75em;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1;
    }
    
    .contract-text span:first-child {
        font-size: 0.75em;
        flex-shrink: 0;
    }
    
    .contract-text i {
        font-size: 0.75em;
        flex-shrink: 0;
    }
    
    /* Hero CA button mobile */
    .hero .contract-btn {
        width: calc(100% - 30px) !important;
        max-width: calc(100% - 30px) !important;
        padding: 12px 8px !important;
        font-size: 0.85em !important;
        min-width: auto !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }
    
    /* Bottom CA button mobile - fix clipping */
    .contract-copy-btn {
        width: calc(100% - 30px) !important;
        max-width: calc(100% - 30px) !important;
        padding: 12px 8px !important;
        font-size: 0.85em !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }
    
    .contract-copy-btn .contract-address-text {
        max-width: 180px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 0.75em !important;
    }
    
    /* Fix clipped H1 titles and text in hero section */
    .hero-title {
        padding: 0 20px;
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        padding: 0 20px;
        font-size: 1.1em;
    }
    
    section .section-title {
        padding: 0 20px;
    }
    
    section .section-subtitle {
        padding: 0 20px;
    }
}

/* Increase spacing below hero CA */
.hero .scroll-indicator {
    margin: 96px auto 0 !important;
}

/* Remove hover tooltip */
.copy-tooltip {
    display: none !important;
}

/* Removed duplicate desktop CA button rules - see clean version at end of file */

/* Mobile: ensure hero CA is fully visible with side breathing space */
@media (max-width: 768px) {
    /* Removed duplicate mobile hero CA button rules - see clean version at end of file */
    
    /* Removed duplicate mobile breathing space rules - see clean version at end of file */
}
