* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 2rem;
    width: auto;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-white:hover {
    background: #f5f5f5;
}

.btn-green {
    background: #c4ff0d;
    color: #000;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
}

.btn-green:hover {
    background: #b3e60c;
}

.btn-green-small {
    background: #c4ff0d;
    color: #000;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
}

/* Airdrop Section */
.airdrop-section {
    position: relative;
    padding: 6rem 1rem 4rem;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    background: #333;
}

.airdrop-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.airdrop-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.airdrop-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 2rem 0;
}

.main-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    width: 100%;
}

.main-logo img {
    width: auto;
    height: 35rem;
    filter: invert(1) brightness(2);
}

.airdrop-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    width: 100%;
}

/* Token Card */
.token-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 0.75rem;
    padding: 1rem;
    max-width: 24rem;
    margin: 1.5rem auto;
    width: 100%;
}

.token-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.token-icon {
    width: 2rem;
    height: 2rem;
}

.token-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.airdrop-amount {
    background: #e8ffa8;
    border-radius: 0.5rem;
    padding: 0.625rem;
    border: 2px solid #000;
    margin-bottom: 0.75rem;
}

.label {
    font-size: 0.75rem;
    color: #374151;
    margin-bottom: 0.125rem;
}

.value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.stat-item {
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 0.5rem;
    border: 2px solid #000;
}

.stat-full {
    grid-column: span 2;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.stat-value {
    font-weight: 700;
    color: #000;
}

.contract-box {
    background: #e8ffa8;
    border-radius: 0.5rem;
    padding: 0.625rem;
    border: 2px solid #000;
}

.contract-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contract-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.contract-link {
    font-size: 0.75rem;
    color: #000;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contract-link:hover {
    color: #374151;
}

/* Users Info */
.users-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.users-avatars {
    display: flex;
    margin-left: -0.5rem;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #c4ff0d;
    margin-left: -0.5rem;
}

/* Decorative Icons */
.decorative-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 2rem;
    opacity: 0.2;
    flex-wrap: wrap;
}

.grass-icon {
    width: 2rem;
    height: 2rem;
    color: #c4ff0d;
}

/* Dashboard Styles */
.dashboard-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.trademark {
    font-size: 0.75rem;
    vertical-align: super;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #1f2937;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}

.icon-btn:hover {
    background: #374151;
}

.avatar-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #c4ff0d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Dashboard Main */
.dashboard-main {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 1.5rem 1rem;
}

.dashboard-container {
    max-width: 42rem;
    margin: 0 auto;
    width: 100%;
}

.card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* Earnings Card */
.earnings-card {
    background: #fff;
}

.earnings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.earnings-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.users-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.earnings-label {
    font-weight: 700;
    font-size: 1rem;
}

.earnings-value {
    font-weight: 700;
    font-size: 1rem;
}

.uptime-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.info-icon {
    width: 1rem;
    height: 1rem;
}

/* Earnings Section */
.earnings-section {
    background: #e8ffa8;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.earnings-box {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.earnings-box:last-child {
    margin-bottom: 0;
}

.earnings-content {
    text-align: center;
    margin-bottom: 0.75rem;
}

.epoch-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.epoch-sublabel {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.token-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.token-icon-small {
    width: 2rem;
    height: 2rem;
}

.amount-large {
    font-size: 2.25rem;
    font-weight: 700;
}

.uptime-small {
    font-size: 0.875rem;
    color: #6b7280;
}

.today-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-icon-small {
    width: 1.25rem;
    height: 1.25rem;
}

.today-label {
    font-weight: 700;
}

/* Connection Card */
.connection-card {
    background: #fff;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.wifi-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #c4ff0d;
}

.status-badge {
    flex: 1;
    background: #e8ffa8;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #c4ff0d;
}

.connection-message {
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.device-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    border: 2px solid #000;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.device-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.device-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.device-type {
    font-size: 0.875rem;
    font-weight: 700;
}

.multiplier-badge {
    background: #c4ff0d;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Networks Card */
.networks-card {
    background: #fff;
}

.networks-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.networks-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.networks-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn-refresh {
    padding: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn-refresh:hover {
    background: #f5f5f5;
}

.icon-btn-refresh svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive */
@media (max-width: 640px) {
    .airdrop-section {
        padding: 5rem 0.5rem 2rem;
    }

    .container {
        padding: 0 0.5rem;
    }

    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .btn-green {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .btn-white {
        width: 100%;
        max-width: 100%;
    }

    .main-logo img {
        height: 8rem;
    }

    .airdrop-subtitle {
        font-size: 1rem;
    }

    .token-card {
        max-width: 100%;
        margin: 1rem auto;
    }

    .value {
        font-size: 1rem;
    }

    .contract-link {
        font-size: 0.65rem;
    }

    .earnings-header {
        flex-direction: column;
    }

    .earnings-info {
        width: 100%;
        justify-content: center;
    }

    .btn-green {
        width: 100%;
    }

    .button-group {
        width: 100%;
    }

    .button-group a {
        width: 100%;
    }

    .header-content {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 1.5rem;
    }
}

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

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

.footer-column {
    min-width: 0;
}

.footer-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Hero Section */
.hero-section {
    padding: 8rem 1rem 5rem;
    background: #f5f3ed;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #c4ff0d;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.badge-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-badge span {
    font-weight: 600;
    color: #000;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    color: #000;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

.hero-image {
    position: relative;
    min-height: 400px;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(196, 255, 13, 0.2) 0%, transparent 70%);
    border-radius: 1.5rem;
}

/* Features Section */
.features-section {
    padding: 5rem 1rem;
    background: #fff;
}

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

.feature-card {
    background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-content {
    text-align: right;
    width: 100%;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 1rem;
    background: #f5f3ed;
}

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

.how-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #c4ff0d;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.how-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.how-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    color: #000;
}

/* App Showcase Section */
.app-showcase-section {
    padding: 5rem 1rem;
    background: #fff;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.app-image {
    min-height: 400px;
    background: linear-gradient(135deg, #e8ffa8 0%, #c4ff0d 100%);
    border-radius: 1.5rem;
}

.app-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.app-text {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-features {
    margin-bottom: 1.5rem;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.app-check {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #c4ff0d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-check svg {
    width: 1.5rem;
    height: 1.5rem;
}

.app-feature-item p {
    font-size: 1.125rem;
    color: #374151;
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .how-title {
        font-size: 2rem;
    }

    .how-subtitle {
        font-size: 1.75rem;
    }

    .app-title {
        font-size: 2rem;
    }

    .app-text {
        font-size: 1rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-subtitle {
        font-size: 1rem;
    }
}
