* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #F7C12B;
    background-color: #181A20;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #111111 !important;
    color: #F7C12B !important;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(247, 193, 43, 0.1);
}
.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #F7C12B;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #F7C12B;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff200;
}

.hamburger {
    background: none;
    border: none;
    padding: 0;
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger img {
    height: 32px;
    width: 32px;
    display: block;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #181A20;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #F7C12B;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #F7C12B;
    color: #fff;
}

.btn-primary:hover {
    background-color: #E5AD26;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #F7C12B;
}

.btn-secondary:hover {
    background-color: #F7C12B;
    color: #FFFFFF;
}

.floating-card {
    background: #F7C12B;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffff;
}

.token-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: #fff;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: #181A20;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: #E5AD26;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1rem;
}
.feature-icon img{
    width: 40px;
    height: 40px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p{
   color: #fff;
}

.mission-statement {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.mission-statement blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

.big-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Roadmap Section */
.roadmap {
    background-color: #181A20;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -3rem;
    width: 2px;
    background: #E0E0E0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #F7C12B;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(247, 193, 43, 0.3);
    border: 3px solid #fff;
}

.timeline-marker img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.timeline-item.active .timeline-marker {
    background: #F7C12B;
    animation: pulse 2s infinite;
}

.timeline-content {
    width: 80%;
    background: #F7C12B;
    padding: 1.5rem;
    border-radius: 12px;
    margin-left: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #FFF;
    margin: 0;
    line-height: 1.5;
}


.minmax-buy-section {
    background:#181A20;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.minmax-buy-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.minmax-buy-header h2 {
    font-size: 2rem;
    color: #F7C12B;
    margin-bottom: 0.5rem;
}

.minmax-buy-header p {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 500px;
}

.minmax-label {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.minmax-value {
    font-size: 2.4rem;
    font-weight: 900;
    color: #F7C12B;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #F7C12B44;
}


/* Partners Section */
.partners {
    background: #181A20;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.partners-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(247, 193, 43, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F7C12B, #E5AD26);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(247, 193, 43, 0.4);
}

.partner-logo-container {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #F7C12B, #E5AD26);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(247, 193, 43, 0.3);
    position: relative;
    overflow: hidden;
}

.partner-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border-radius: 16px;
}

.partner-logo {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.partner-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #181A20;
    margin: 0 0 0.5rem 0;
}

.partner-info p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.partner-badge {
    background: linear-gradient(135deg, #F7C12B, #E5AD26);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(247, 193, 43, 0.3);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(247, 193, 43, 0.4);
}

/* Partners Stats */
.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.stat-card {
    background: linear-gradient(145deg, #F7C12B, #E5AD26);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 12px 32px rgba(247, 193, 43, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 16px;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(247, 193, 43, 0.4);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.stat-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.3rem 0;
}

.stat-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* Pre-sale Section */
.presale {
    background: #181A20;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.presale::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(247, 193, 43, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(247, 193, 43, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.presale-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wallet-card {
    background: #F7C12B;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(247, 193, 43, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.wallet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.network-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    background: #fff !important;
}


.network-icon img {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
}


.card-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.card-title p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.wallet-address {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.wallet-address code {
    flex: 1;
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 500;
    word-break: break-all;
    color: #495057;
    line-height: 1.4;
}

.copy-btn {
    background: linear-gradient(135deg, #F7C12B, #E5AD26);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    box-shadow: 0 4px 16px rgba(247, 193, 43, 0.3);
}

.copy-btn img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247, 193, 43, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

/* Benefits Section */
.benefits-section {
    background: #F7C12B;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(247, 193, 43, 0.2);
    margin-top: 1rem;
}

.benefits-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.benefits-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.benefits-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(247, 193, 43, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(247, 193, 43, 0.3);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #F7C12B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(247, 193, 43, 0.3);
}

.benefit-icon img {
    width: 22px;
    height: 22px;
    color: #fff;
    filter: brightness(0) invert(1);
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #181A20;
    margin: 0 0 0.5rem 0;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #181A20 100%);
    color: #FFFFFF;
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(247, 193, 43, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(247, 193, 43, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F7C12B, #E5AD26);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(247, 193, 43, 0.3);
}

.footer-logo img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #F7C12B;
    margin: 0;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 600;
    margin: 0;
}

.footer-description {
    font-size: 0.95rem;
    color: #B0B0B0;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F7C12B, #E5AD26);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(247, 193, 43, 0.3);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 193, 43, 0.4);
    color: #FFFFFF;
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F7C12B;
    margin: 0 0 1.5rem 0;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #F7C12B, #E5AD26);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #F7C12B;
}

.footer-section a:hover {
    color: #F7C12B;
    padding-left: 20px;
}

.footer-section a:hover::before {
    opacity: 1;
}

/* Footer Stats */
.footer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: linear-gradient(145deg, rgba(247, 193, 43, 0.1), rgba(247, 193, 43, 0.05));
    border: 1px solid rgba(247, 193, 43, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(247, 193, 43, 0.2);
    border-color: rgba(247, 193, 43, 0.4);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #F7C12B;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #B0B0B0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(247, 193, 43, 0.2);
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: #B0B0B0;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #111111;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .presale {
        padding: 2rem 0;
    }
    
    .wallet-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-title h3 {
        font-size: 1.5rem;
    }
    
    .wallet-address {
        flex-direction: column;
        gap: 1rem;
    }
    
    .copy-btn {
        align-self: flex-end;
    }
    
    .benefits-section {
        padding: 1.5rem;
    }
    
    .benefits-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
    
    .partner-logo-container {
        width: 64px;
        height: 64px;
    }
    
    .partner-logo {
        width: 36px;
        height: 36px;
    }
    
    .partners-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .footer-main {
        gap: 2rem;
    }
    
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wallet-card {
        padding: 1rem;
    }
    
    .card-title h3 {
        font-size: 1.3rem;
    }
    
    .wallet-address code {
        font-size: 0.9rem;
    }
    
    .benefits-section {
        padding: 1rem;
    }
    
    .benefits-header h3 {
        font-size: 1.5rem;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .partners {
        padding: 2rem 0;
    }
    
    .partner-card {
        padding: 1rem;
    }
    
    .partner-info h3 {
        font-size: 1.2rem;
    }
    
    .partner-info p {
        font-size: 0.9rem;
    }
    
    .stat-content h4 {
        font-size: 1.5rem;
    }
    
    .footer-main {
        gap: 2rem;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
}