* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FFD700;
    --primary-dark: #FFA500;
    --secondary: #FFB700;
    --accent: #FFC107;
    --success: #00d084;
    --warning: #ffa502;
    --danger: #ff6b6b;
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --text-primary: #d0d0d0;
    --text-secondary: #909090;
    --text-light: #686868;
    --border: #282828;
    --shadow: 0 4px 15px rgba(255, 215, 0, 0.08);
    --shadow-hover: 0 8px 20px rgba(255, 215, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 50%, #1a1a1a 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 120px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.08);
    border-bottom-color: rgba(255, 215, 0, 0.15);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-logo a {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.navbar-logo a:hover {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border-radius: 8px;
    display: block;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-2px);
}

.nav-link-btn {
    background: linear-gradient(135deg, #FFD700, #FFB700);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

.nav-link-btn:hover {
    background: linear-gradient(135deg, #FFB700, #FFA500);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
    margin-right: 10px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFB700);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .navbar-container {
        height: 70px;
    }

    .navbar-logo a {
        font-size: 24px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 999;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.99);
        backdrop-filter: blur(30px);
        padding: 15px 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
        border-bottom: 2px solid rgba(255, 215, 0, 0.2);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        visibility: hidden;
    }

    .nav-menu.active {
        max-height: 100vh;
        overflow-y: scroll;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 215, 0, 0.05);
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        border-radius: 0;
        font-size: 16px;
        transition: var(--transition);
        background: transparent;
    }

    .nav-link:active {
        background: rgba(255, 215, 0, 0.08);
    }

    .nav-link-btn {
        background: linear-gradient(135deg, #FFD700, #FFB700);
        margin: 15px 15px 15px 0;
        border-radius: 10px;
        border-bottom: none;
        color: #000;
        font-weight: 700;
        padding: 14px 20px !important;
    }

    .nav-link-btn:active {
        background: linear-gradient(135deg, #FFB700, #FFA500);
    }

    .container-main {
        padding-top: 110px;
    }
}

.header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.6) 100%);
    backdrop-filter: blur(20px);
    padding: 40px 0;
    margin-top: 20px;
    margin-bottom: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    animation: slideDown 0.6s ease-out;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    text-align: center;
}

.logo {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -2px;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.15)); }
    50% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.25)); }
}

.tagline {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #FFD700, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 183, 0, 0.05) 50%, rgba(255, 192, 0, 0.02) 100%);
    backdrop-filter: blur(5px);
    padding: 80px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.08);
    margin-bottom: 70px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 68px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FFD700, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.9;
    font-weight: 300;
}

.features-pill {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.pill {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.pill:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #FFD700, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.stats-section {
    margin-bottom: 70px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    backdrop-filter: blur(5px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.06);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent);
    border-radius: 50%;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.25);
}

.stat-card:hover::before {
    transform: translate(100px, 100px);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-subtext {
    font-size: 13px;
    color: var(--text-light);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    margin: 70px 0;
}

.info-section {
    margin-bottom: 70px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(26, 26, 26, 0.5) 100%);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06), transparent);
    border-radius: 50%;
    transition: var(--transition);
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFB700);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.2);
}

.info-card:hover::before {
    transform: translate(100px, 100px);
}

.info-card:hover::after {
    transform: scaleX(1);
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    position: relative;
    z-index: 1;
}

.card-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin-right: 12px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.feature-list li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
}

.contract-address {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(5px);
    padding: 18px;
    border-radius: 12px;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    color: var(--text-primary);
    word-break: break-all;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.link-list li {
    padding: 8px 0;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
}

.link-btn:last-child {
    margin-bottom: 0;
}

.link-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.link-btn span {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 183, 0, 0.05) 50%, rgba(255, 192, 0, 0.02) 100%);
    backdrop-filter: blur(5px);
    padding: 70px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.08);
    margin-bottom: 70px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06), transparent);
    border-radius: 50%;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 60px;
    background: linear-gradient(135deg, #FFD700, #FFB700);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button-large:hover::before {
    left: 100%;
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 35px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    gap: 15px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.cta-button.primary:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #FFB700, #FFD700);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.cta-button.secondary:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.cta-button.tertiary {
    background: linear-gradient(135deg, #FFB700, #7a4d8a);
    box-shadow: 0 4px 12px rgba(255, 183, 0, 0.1);
}

.cta-button.tertiary:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 183, 0, 0.15);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.6);
}

.cta-button.tertiary:hover::before {
    opacity: 1;
}

.footer {
    text-align: center;
    padding: 60px 20px 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 1s both;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-text {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #FFD700, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

@media (max-width: 768px) {
    .container-main {
        padding: 15px;
        padding-top: 120px;
    }

    .header {
        padding: 30px 20px;
        margin-bottom: 40px;
        margin-top: 20px;
        border-radius: 16px;
    }

    .logo {
        font-size: 42px;
    }

    .tagline {
        font-size: 12px;
    }

    .hero {
        padding: 50px 25px;
        margin-bottom: 50px;
        border-radius: 16px;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .features-pill {
        gap: 10px;
    }

    .pill {
        padding: 10px 18px;
        font-size: 13px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .stats-grid {
        gap: 18px;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .stat-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .divider {
        margin: 50px 0;
    }

    .info-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .card-title {
        font-size: 19px;
        margin-bottom: 18px;
    }

    .feature-list li {
        padding: 10px 0;
        font-size: 14px;
    }

    .contract-address {
        font-size: 11px;
        padding: 14px;
        border-radius: 10px;
    }

    .link-btn {
        padding: 12px 14px;
        font-size: 14px;
        margin-bottom: 8px;
        border-radius: 10px;
    }

    .cta-section {
        padding: 50px 25px;
        margin-bottom: 50px;
        border-radius: 16px;
    }

    .cta-grid {
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .cta-icon {
        font-size: 36px;
    }

    .cta-text {
        font-size: 16px;
    }

    .footer {
        padding: 40px 15px 30px;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-subtext {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container-main {
        padding: 12px;
        padding-top: 120px;
    }

    .header {
        padding: 20px 15px;
        margin-bottom: 25px;
        margin-top: 15px;
    }

    .logo {
        font-size: 28px;
    }

    .tagline {
        font-size: 11px;
    }

    .hero {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .features-pill {
        gap: 8px;
    }

    .pill {
        padding: 6px 12px;
        font-size: 11px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-icon {
        font-size: 28px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .divider {
        margin: 25px 0;
        height: 1px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-card {
        padding: 20px 15px;
    }

    .card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .feature-list li {
        padding: 6px 0;
        font-size: 12px;
    }

    .contract-address {
        font-size: 10px;
        padding: 10px;
    }

    .link-btn {
        padding: 10px 12px;
        font-size: 12px;
        margin-bottom: 5px;
    }

    .cta-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta-button {
        padding: 20px 15px;
    }

    .cta-icon {
        font-size: 24px;
    }

    .cta-text {
        font-size: 14px;
    }

    .footer {
        padding: 25px 12px;
    }

    .footer-text {
        font-size: 11px;
    }

    .footer-subtext {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 24px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .stat-value {
        font-size: 18px;
    }

    .card-title {
        font-size: 15px;
    }

    .cta-icon {
        font-size: 20px;
    }
}
