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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 50%, #E2E8F0 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #2D3748;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

.nav-link {
    color: #4A5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2D3748;
    background: rgba(226, 232, 240, 0.5);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4A5568;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Salt Banner.png');
    background-repeat: repeat;
    background-size: 200px 200px;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.banner-img {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

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

.floating-logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

.hero-title {
    font-size: 4rem;
    color: #2D3748;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-tagline {
    font-size: 1.8rem;
    color: #4A5568;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
}

/* Contract Section in Hero */
.contract-section {
    margin-bottom: 3rem;
}

.contract-display {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #E2E8F0;
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.contract-title-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contract-title-img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.contract-title-img:hover {
    transform: scale(1.1);
}

.contract-info {
    text-align: center;
    width: 100%;
}

.contract-title {
    font-size: 1.5rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-family: 'Fredoka One', cursive;
}

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

.contract-input {
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    background: #F7FAFC;
    color: #4A5568;
    min-width: 400px;
    transition: all 0.3s ease;
}

.contract-input:focus {
    outline: none;
    border-color: #B8D4F0;
    box-shadow: 0 0 0 3px rgba(184, 212, 240, 0.1);
}

.copy-btn {
    padding: 12px;
    background: #B8D4F0;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: #A0C4E8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 212, 240, 0.4);
}

.copy-icon {
    width: 20px;
    height: 20px;
    color: #2D3748;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    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 ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #B8D4F0 0%, #A0C4E8 100%);
    color: #2D3748;
    border: 3px solid #8BB5E0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 181, 224, 0.4);
    background: linear-gradient(135deg, #A0C4E8 0%, #8BB5E0 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #4A5568;
    border: 3px solid #E2E8F0;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(226, 232, 240, 0.4);
    background: #F7FAFC;
    border-color: #CBD5E0;
}

/* Image Button Styling */
.btn-image {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.btn-image:hover {
    background: transparent;
    border: none;
    box-shadow: none;
}

.button-image {
    width: auto;
    height: 100px;
    max-width: 300px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.btn-image:hover .button-image {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

.btn-image:active .button-image {
    transform: translateY(-1px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    color: #4A5568;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #E2E8F0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #F7FAFC;
    border-color: #CBD5E0;
}

/* Social Icon Styling */
.social-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Sections */
.about-section, .tokenomics-section, .community-section, .contract-section-full, .market-section {
    padding: 80px 0;
    position: relative;
}

.about-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 100%);
}

.tokenomics-section {
    background: linear-gradient(135deg, #EDF2F7 0%, #E2E8F0 100%);
}

.community-section {
    background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
}

.contract-section-full {
    background: linear-gradient(135deg, #EDF2F7 0%, #E2E8F0 100%);
}

.market-section {
    background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2D3748;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #4A5568;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Market Section Styles */
.market-section {
    padding: 80px 0;
    display: block;
    visibility: visible;
    opacity: 1;
}

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

.market-content {
    display: flex;
    justify-content: center;
}

.market-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid #E2E8F0;
    backdrop-filter: blur(15px);
    max-width: 800px;
    width: 100%;
    transition: all 0.3s ease;
    display: block;
    visibility: visible;
    opacity: 1;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: #CBD5E0;
}

.market-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E2E8F0;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #48BB78;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.live-text {
    font-weight: 700;
    color: #48BB78;
    font-size: 1.1rem;
}

.market-updated {
    margin-left: auto;
    color: #718096;
    font-size: 0.9rem;
}

.market-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(184, 212, 240, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(184, 212, 240, 0.2);
}

.market-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #B8D4F0 0%, #A0C4E8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D3748;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(184, 212, 240, 0.3);
}

.market-meta {
    flex: 1;
}

.market-label {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.market-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2D3748;
    font-family: 'Fredoka One', cursive;
}

.price-value {
    color: #48BB78;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
}

.stat-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #CBD5E0;
}

.stat-label {
    font-weight: 600;
    color: #4A5568;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 700;
    color: #2D3748;
    font-size: 1.1rem;
}

.market-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 12px 24px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta.primary {
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    color: white;
    border: 2px solid #38A169;
}

.btn-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
}

.btn-cta:not(.primary) {
    background: rgba(255, 255, 255, 0.9);
    color: #4A5568;
    border: 2px solid #E2E8F0;
}

.btn-cta:not(.primary):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 232, 240, 0.4);
    background: #F7FAFC;
    border-color: #CBD5E0;
}

.btn-cta[aria-disabled="true"] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.market-note {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Reveal on scroll animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Contract Card */
.about-contract {
    margin-top: 3rem;
}

.contract-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #E2E8F0;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.contract-card-image {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.contract-card-image:hover {
    transform: scale(1.1);
}

.contract-card-content {
    text-align: left;
    flex: 1;
}

.contract-card-content h3 {
    font-size: 1.8rem;
    color: #2D3748;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka One', cursive;
}

.contract-card-content p {
    color: #4A5568;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contract-address-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contract-input-card {
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    background: #F7FAFC;
    color: #4A5568;
    flex: 1;
    transition: all 0.3s ease;
}

.contract-input-card:focus {
    outline: none;
    border-color: #B8D4F0;
    box-shadow: 0 0 0 3px rgba(184, 212, 240, 0.1);
}

.copy-btn-card {
    padding: 12px;
    background: #B8D4F0;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn-card:hover {
    background: #A0C4E8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 212, 240, 0.4);
}

/* Contract Grid Section */
.contract-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contract-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #E2E8F0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contract-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #CBD5E0;
}

.contract-item-image {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.contract-item-image:hover {
    transform: scale(1.1);
}

.contract-item-content {
    flex: 1;
}

.contract-item-content h3 {
    font-size: 1.5rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-family: 'Fredoka One', cursive;
}

.contract-address-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contract-input-item {
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    background: #F7FAFC;
    color: #4A5568;
    flex: 1;
    transition: all 0.3s ease;
}

.contract-input-item:focus {
    outline: none;
    border-color: #B8D4F0;
    box-shadow: 0 0 0 3px rgba(184, 212, 240, 0.1);
}

.copy-btn-item {
    padding: 12px;
    background: #B8D4F0;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn-item:hover {
    background: #A0C4E8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 212, 240, 0.4);
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid #E2E8F0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #CBD5E0;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2D3748;
}

.feature-card p {
    color: #4A5568;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #E2E8F0;
}

.tokenomics-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2D3748;
    text-align: center;
}

.token-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(184, 212, 240, 0.2);
    border-radius: 15px;
    border: 2px solid rgba(184, 212, 240, 0.3);
}

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

.stat-value {
    font-weight: 700;
    color: #2D3748;
    font-size: 1.2rem;
}

.tokenomics-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.salt-shaker-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tokenomics-salt {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    animation: shake 4s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.salt-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #CBD5E0;
    border-radius: 50%;
    animation: sprinkle 3s ease-in-out infinite;
}

.particle:nth-child(1) { animation-delay: 0s; left: -20px; top: -30px; }
.particle:nth-child(2) { animation-delay: 0.5s; left: 20px; top: -25px; }
.particle:nth-child(3) { animation-delay: 1s; left: -15px; top: -40px; }
.particle:nth-child(4) { animation-delay: 1.5s; left: 25px; top: -35px; }
.particle:nth-child(5) { animation-delay: 2s; left: 0px; top: -45px; }

@keyframes sprinkle {
    0%, 100% { opacity: 0; transform: translateY(0px); }
    50% { opacity: 1; transform: translateY(20px); }
}

/* Community Section */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.community-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 212, 240, 0.1), transparent);
    transition: left 0.5s ease;
}

.community-card:hover::before {
    left: 100%;
}

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #CBD5E0;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2D3748;
}

.community-card p {
    color: #4A5568;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    color: #E2E8F0;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-logo span {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #E2E8F0;
}

/* Footer Contract */
.footer-contract {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-contract-image {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-contract-image:hover {
    transform: scale(1.1);
}

.footer-contract-info h4 {
    font-size: 1.1rem;
    color: #E2E8F0;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka One', cursive;
}

.footer-contract-address {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contract-input {
    padding: 8px 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
    min-width: 200px;
    transition: all 0.3s ease;
}

.footer-contract-input:focus {
    outline: none;
    border-color: #B8D4F0;
    box-shadow: 0 0 0 3px rgba(184, 212, 240, 0.2);
}

.footer-contract-input::placeholder {
    color: #CBD5E0;
}

.footer-copy-btn {
    padding: 8px;
    background: rgba(184, 212, 240, 0.2);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copy-btn:hover {
    background: rgba(184, 212, 240, 0.4);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-link:hover {
    color: #E2E8F0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4A5568;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

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

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #48BB78;
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    font-weight: 600;
}

.notification.show {
    transform: translateX(0);
}

.notification.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .floating-logo {
        width: 80px;
        height: 80px;
    }
    
    .about-content,
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 250px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* Mobile Contract Styles */
    .contract-display {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        max-width: 90vw;
    }
    
    .contract-input {
        min-width: 280px;
    }
    
    .contract-title-img {
        width: 100px;
        height: 100px;
    }
    
    .contract-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .contract-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contract-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-contract {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-contract-input {
        min-width: 180px;
    }
    
    /* Mobile Background Image */
    .hero-background {
        opacity: 0.03;
        background-size: 150px 150px;
    }
    
    .banner-img {
        display: none;
    }
    
    /* Mobile Button */
    .button-image {
        height: 80px;
        max-width: 250px;
    }
    
    /* Mobile Market Section */
    .market-card {
        padding: 2rem;
        margin: 0 10px;
    }
    
    .market-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .market-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .market-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-logo {
        width: 60px;
        height: 60px;
    }
    
    .banner-img {
        max-width: 85vw;
        max-height: 85vh;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .contract-input {
        min-width: 200px;
        font-size: 0.9rem;
    }
    
    .contract-input-card {
        font-size: 0.9rem;
    }
    
    .contract-input-item {
        font-size: 0.9rem;
    }
    
    .footer-contract-input {
        min-width: 150px;
        font-size: 0.8rem;
    }
    
    /* Small screen background image */
    .hero-background {
        opacity: 0.02;
        background-size: 120px 120px;
    }
    
    .contract-title-img {
        width: 80px;
        height: 80px;
    }
    
    .contract-input {
        min-width: 250px;
    }
    
    .button-image {
        height: 70px;
        max-width: 220px;
    }
    
    /* Small screen market section */
    .market-card {
        padding: 1.5rem;
        margin: 0 5px;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .stat-pill {
        padding: 0.8rem 1rem;
    }
    
    .market-value {
        font-size: 1.5rem;
    }
}

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

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

/* Selection Colors */
::selection {
    background: rgba(184, 212, 240, 0.3);
    color: #2D3748;
}

::-moz-selection {
    background: rgba(184, 212, 240, 0.3);
    color: #2D3748;
}
