@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

body {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

header {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

/* CA Display - Optimized */
.ca-display {
    position: relative;
    z-index: 99;
    background: linear-gradient(90deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(29, 112, 28, 0.08) 50%,
        rgba(0, 0, 0, 0.95) 100%);
    background-size: 200% 100%;
    animation: caBackgroundMove 6s ease-in-out infinite;
    border-bottom: 2px solid #1d701c;
    padding: 15px 50px;
    text-align: center;
    backdrop-filter: blur(5px);
    will-change: background-position;
}

@keyframes caBackgroundMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.ca-label {
    position: relative;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #1d701c;
    text-transform: uppercase;
    margin-right: 12px;
    text-shadow: 0 0 15px rgba(29, 112, 28, 0.6);
    animation: caLabelPulse 3s ease-in-out infinite;
    will-change: text-shadow;
}

@keyframes caLabelPulse {
    0%, 100% {
        text-shadow: 0 0 15px rgba(29, 112, 28, 0.6);
    }
    50% {
        text-shadow: 0 0 25px rgba(29, 112, 28, 0.9);
    }
}

.ca-value {
    position: relative;
    display: inline-block;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #25a023;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(37, 160, 35, 0.7);
    animation: caValueGlow 3s ease-in-out infinite;
    text-transform: uppercase;
    will-change: text-shadow;
}

@keyframes caValueGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(37, 160, 35, 0.7);
    }
    50% {
        text-shadow: 0 0 30px rgba(37, 160, 35, 1),
                     0 0 50px rgba(37, 160, 35, 0.5);
    }
}

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

.eyes-icon {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 15px #950000);
    animation: eyeGlow 2s ease-in-out infinite;
}

@keyframes eyeGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px #950000);
    }
    50% {
        filter: drop-shadow(0 0 30px #950000) drop-shadow(0 0 45px #950000);
    }
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #1d701c;
}

.dropdown-arrow {
    font-size: 12px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.header-actions .btn-outline {
    background: transparent;
    border: 2px solid #1d701c;
    color: #ffffff;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.header-actions .btn-outline:hover {
    background-color: rgba(29, 112, 28, 0.2);
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.4);
    transform: translateY(-2px);
}

.social-link-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(29, 112, 28, 0.15);
    color: #1d701c;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link-header:hover {
    background-color: #1d701c;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.6);
    transform: scale(1.1);
}

.social-link-header svg {
    width: 18px;
    height: 18px;
}

.connect-wallet {
    background-color: #1d701c;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.connect-wallet:hover {
    background-color: #25a023;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.6);
    transform: translateY(-2px);
}

.menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-btn:hover span {
    background-color: #1d701c;
}

main {
    position: relative;
    z-index: 10;
    padding: 50px;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 3px;
    color: #1d701c;
    background-color: rgba(29, 112, 28, 0.2);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 3px;
    margin-bottom: 40px;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #1d701c;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.btn-outline:hover {
    background-color: rgba(29, 112, 28, 0.1);
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.4);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #1d701c;
    border: 2px solid #1d701c;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.btn-primary:hover {
    background-color: #25a023;
    box-shadow: 0 0 30px rgba(29, 112, 28, 0.6);
    transform: translateY(-2px);
}

/* Solution Section */
.solution-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-content {
    background: linear-gradient(135deg, rgba(29, 112, 28, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 3px solid #1d701c;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    box-shadow: 0 0 50px rgba(29, 112, 28, 0.3),
                inset 0 0 30px rgba(29, 112, 28, 0.1);
    animation: solutionGlow 3s ease-in-out infinite;
}

@keyframes solutionGlow {
    0%, 100% {
        box-shadow: 0 0 50px rgba(29, 112, 28, 0.3),
                    inset 0 0 30px rgba(29, 112, 28, 0.1);
    }
    50% {
        box-shadow: 0 0 80px rgba(29, 112, 28, 0.5),
                    inset 0 0 50px rgba(29, 112, 28, 0.15);
    }
}

.solution-badge {
    display: inline-block;
    background-color: #1d701c;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.6);
}

.solution-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(29, 112, 28, 0.5);
}

.solution-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* x402 Integration Section */
.x402-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.x402-content {
    background: linear-gradient(135deg, rgba(149, 0, 0, 0.1) 0%, rgba(29, 112, 28, 0.1) 50%, rgba(0, 0, 0, 0.5) 100%);
    border: 3px solid #1d701c;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.x402-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(29, 112, 28, 0.1), transparent);
    animation: x402Shimmer 8s linear infinite;
}

@keyframes x402Shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.x402-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.x402-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(29, 112, 28, 0.5);
}

.x402-badge {
    background: linear-gradient(135deg, #1d701c, #25a023);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.6);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(29, 112, 28, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(29, 112, 28, 0.8);
    }
}

.x402-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.revenue-flow {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(29, 112, 28, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.revenue-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #1d701c;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.revenue-chain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.revenue-step {
    background: linear-gradient(135deg, rgba(29, 112, 28, 0.2), rgba(37, 160, 35, 0.1));
    border: 2px solid #1d701c;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: center;
    flex: 1;
    min-width: 120px;
    box-shadow: 0 0 15px rgba(29, 112, 28, 0.3);
    transition: all 0.3s;
}

.revenue-step:hover {
    background: linear-gradient(135deg, rgba(29, 112, 28, 0.4), rgba(37, 160, 35, 0.2));
    box-shadow: 0 0 25px rgba(29, 112, 28, 0.6);
    transform: translateY(-2px);
}

.revenue-arrow {
    font-size: 24px;
    color: #1d701c;
    font-weight: 900;
}

.x402-benefit {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 25px 0;
    letter-spacing: 0.5px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.x402-final {
    font-size: 16px;
    line-height: 1.8;
    color: #25a023;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 20px;
    background-color: rgba(29, 112, 28, 0.1);
    border-left: 4px solid #1d701c;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.agents {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
}

.title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #1d701c, transparent);
}

.agent-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 350px));
    gap: 40px;
    max-width: 1200px;
    justify-content: center;
}

.agent-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.agent-card:hover {
    transform: translateY(-15px) scale(1.05);
}

.agent-image-wrapper {
    position: relative;
    border: 3px solid #1d701c;
    border-radius: 15px;
    overflow: hidden;
    background-color: #000000;
    aspect-ratio: 1;
    transition: all 0.4s ease;
}

.agent-card:hover .agent-image-wrapper {
    border-color: #25a023;
    box-shadow: 0 0 30px rgba(29, 112, 28, 0.8),
                0 0 60px rgba(29, 112, 28, 0.4),
                inset 0 0 20px rgba(29, 112, 28, 0.2);
}

.agent-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(29, 112, 28, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
    z-index: 1;
}

.agent-card:hover .agent-image-wrapper::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.agent-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

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

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.coming-soon-card:hover .coming-soon-overlay {
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 1;
}

.coming-soon-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #1d701c;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(29, 112, 28, 0.8),
                 0 0 40px rgba(29, 112, 28, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(29, 112, 28, 0.8),
                     0 0 40px rgba(29, 112, 28, 0.6);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(29, 112, 28, 1),
                     0 0 60px rgba(29, 112, 28, 0.8);
        transform: scale(1.05);
    }
}

.agent-name {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.agent-description {
    list-style: none;
    padding: 20px;
    margin: 15px 0 0 0;
    background: linear-gradient(135deg, rgba(29, 112, 28, 0.05), rgba(0, 0, 0, 0.3));
    border-top: 2px solid rgba(29, 112, 28, 0.3);
    border-radius: 0 0 10px 10px;
}

.agent-description li {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.agent-description li:last-child {
    margin-bottom: 0;
}

.agent-description li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #1d701c;
    font-weight: 900;
    font-size: 14px;
}

.agent-card:hover .agent-description li::before {
    color: #25a023;
}

/* Roadmap Section */
.roadmap {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-container {
    position: relative;
    padding: 40px 0;
}

.roadmap-line {
    position: absolute;
    left: 30px;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(29, 112, 28, 0.2);
    transition: background-color 0.3s;
}

.roadmap-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #1d701c, #25a023);
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.8);
    transition: height 0.5s ease-out;
}

.roadmap-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
    opacity: 0.5;
    transform: translateX(-20px);
    transition: all 0.5s ease-out;
}

.roadmap-item.active {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-dot {
    position: absolute;
    left: 20px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(29, 112, 28, 0.3);
    border: 3px solid #1d701c;
    transition: all 0.5s ease-out;
}

.roadmap-item.active .roadmap-dot {
    background-color: #1d701c;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.8), 0 0 40px rgba(29, 112, 28, 0.5);
    transform: scale(1.3);
}

.roadmap-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #25a023;
    opacity: 0;
    transition: opacity 0.5s;
}

.roadmap-item.active .roadmap-dot::before {
    opacity: 1;
}

.roadmap-content {
    background-color: rgba(29, 112, 28, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid rgba(29, 112, 28, 0.3);
    transition: all 0.5s ease-out;
}

.roadmap-item.active .roadmap-content {
    background-color: rgba(29, 112, 28, 0.1);
    border-left-color: #1d701c;
    box-shadow: 0 5px 20px rgba(29, 112, 28, 0.2);
}

.roadmap-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
}

.roadmap-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* Enhanced Footer */
.main-footer {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-top: 2px solid rgba(29, 112, 28, 0.3);
    padding: 60px 50px 30px;
    margin-top: 80px;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.footer-eyes-icon {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 10px #950000);
}

.footer-logo h3 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 13px;
    color: #1d701c;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.footer-title {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #1d701c;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: #25a023;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(29, 112, 28, 0.15);
    color: #1d701c;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-link:hover {
    background-color: #1d701c;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.6);
    transform: scale(1.1);
}

.github-icon-footer {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.footer-social-link:hover .github-icon-footer {
    filter: brightness(0) invert(1);
}

.footer-ca-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: rgba(29, 112, 28, 0.7);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 5px;
}

.footer-ca-value {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #25a023;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    text-shadow: 0 0 10px rgba(37, 160, 35, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(29, 112, 28, 0.2);
    padding-top: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(29, 112, 28, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Legacy social link (kept for compatibility) */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(29, 112, 28, 0.2);
    color: #1d701c;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #1d701c;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.6);
    transform: scale(1.1);
}

/* Secret Dev Panel */
.dev-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background: linear-gradient(135deg, rgba(149, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 3px solid #950000;
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(149, 0, 0, 0.5),
                inset 0 0 30px rgba(149, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dev-panel.show {
    opacity: 1;
    pointer-events: all;
}

.dev-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dev-panel-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.dev-panel-title {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 15px;
    color: #950000;
    text-shadow: 0 0 20px rgba(149, 0, 0, 0.5);
    text-transform: uppercase;
}

.dev-panel-subtitle {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.dev-input-group {
    margin-bottom: 20px;
}

.dev-input-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.dev-input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #950000;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    transition: all 0.3s;
}

.dev-input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.dev-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.dev-panel-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.dev-btn {
    flex: 1;
    background-color: #950000;
    border: 2px solid #950000;
    color: #ffffff;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.dev-btn:hover {
    background-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

.dev-btn-cancel {
    background-color: transparent;
    border-color: rgba(149, 0, 0, 0.5);
}

.dev-btn-cancel:hover {
    background-color: rgba(149, 0, 0, 0.2);
    border-color: #950000;
    box-shadow: none;
}

.dev-error-message {
    background-color: rgba(149, 0, 0, 0.2);
    border: 1px solid #950000;
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: #ff0000;
    font-weight: 600;
    display: none;
}

.dev-error-message.show {
    display: block;
}

/* How to Use Box */
.how-to-use-box {
    position: absolute;
    top: 100%;
    right: 50px;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(29, 112, 28, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 3px solid #1d701c;
    border-radius: 15px;
    padding: 30px;
    width: 450px;
    margin-top: 10px;
    box-shadow: 0 10px 50px rgba(29, 112, 28, 0.4),
                inset 0 0 30px rgba(29, 112, 28, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.how-to-use-box.show {
    opacity: 1;
    transform: translateY(0);
}

header {
    position: relative;
}

.how-to-use-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.how-to-use-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #1d701c;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(29, 112, 28, 0.5);
}

.close-box {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    font-family: Arial, sans-serif;
}

.close-box:hover {
    background-color: rgba(149, 0, 0, 0.3);
    color: #950000;
    transform: rotate(90deg);
}

.verification-code-display {
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #1d701c;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: inset 0 0 20px rgba(29, 112, 28, 0.2);
}

.page-verification-code {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #25a023;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(37, 160, 35, 0.5);
    flex: 1;
    word-break: break-all;
}

.copy-btn-inline {
    background-color: #1d701c;
    border: 2px solid #1d701c;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.copy-btn-inline:hover {
    background-color: #25a023;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.6);
    transform: translateY(-2px);
}

.how-to-use-steps {
    background-color: rgba(29, 112, 28, 0.05);
    border-left: 4px solid #1d701c;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.steps-title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.steps-list {
    margin: 0;
    padding-left: 20px;
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-weight: 400;
    counter-increment: step-counter;
    position: relative;
    padding-left: 35px;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #1d701c, #25a023);
    color: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 0 15px rgba(29, 112, 28, 0.5);
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.how-to-use-note {
    background: linear-gradient(135deg, rgba(29, 112, 28, 0.2), rgba(37, 160, 35, 0.1));
    border: 1px solid rgba(29, 112, 28, 0.4);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.how-to-use-note p {
    margin: 0;
    font-size: 14px;
    color: #25a023;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* X Verification Modal */
.verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.verification-modal.show {
    opacity: 1;
}

.verification-content {
    background: linear-gradient(135deg, rgba(29, 112, 28, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid #1d701c;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 40px rgba(29, 112, 28, 0.5),
                inset 0 0 40px rgba(29, 112, 28, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    font-family: Arial, sans-serif;
}

.close-modal:hover {
    background-color: rgba(149, 0, 0, 0.3);
    color: #950000;
    transform: rotate(90deg);
}

.verification-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 15px;
    color: #1d701c;
    text-shadow: 0 0 20px rgba(29, 112, 28, 0.5);
    text-transform: uppercase;
}

.verification-subtitle {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.verification-code-box {
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #1d701c;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(29, 112, 28, 0.2);
}

.verification-code {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #25a023;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(37, 160, 35, 0.5);
    word-break: break-all;
}

.copy-code-btn {
    width: 100%;
    background-color: #1d701c;
    border: 2px solid #1d701c;
    color: #ffffff;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.copy-code-btn:hover {
    background-color: #25a023;
    box-shadow: 0 0 30px rgba(29, 112, 28, 0.6);
    transform: translateY(-2px);
}

.copy-icon {
    font-size: 20px;
}

.verification-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* GitHub Link in Navigation */
.github-link {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.github-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.github-link:hover .github-icon {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px #1d701c);
    transform: scale(1.1);
}

/* License Banner */
.license-banner {
    position: relative;
    z-index: 98;
    background: linear-gradient(90deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(29, 112, 28, 0.12) 50%,
        rgba(0, 0, 0, 0.95) 100%);
    background-size: 200% 100%;
    animation: licenseBannerMove 8s ease-in-out infinite;
    border-bottom: 1px solid rgba(29, 112, 28, 0.4);
    padding: 12px 50px;
    text-align: center;
    backdrop-filter: blur(5px);
}

@keyframes licenseBannerMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.license-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.license-badge {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #25a023;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(37, 160, 35, 0.5);
    animation: licenseBadgeGlow 3s ease-in-out infinite;
}

@keyframes licenseBadgeGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(37, 160, 35, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(37, 160, 35, 0.8);
    }
}

.license-badge-mit {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #1d701c, #25a023);
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(29, 112, 28, 0.6);
    transition: all 0.3s ease;
}

.license-link {
    text-decoration: none;
    display: inline-flex;
}

.license-link:hover .license-badge-mit {
    box-shadow: 0 0 25px rgba(29, 112, 28, 0.9);
    transform: translateY(-2px);
}

.license-divider {
    color: rgba(29, 112, 28, 0.5);
    font-size: 16px;
    font-weight: 700;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 48px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-family: Arial, sans-serif;
}

.mobile-close-btn:hover {
    color: #950000;
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.mobile-nav-link:hover {
    color: #1d701c;
    transform: translateX(10px);
}

.menu-btn {
    display: none;
}

/* Verification & Hire Section */
.verification-hire-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.verification-hire-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.verification-box-main,
.hire-box-main {
    background: linear-gradient(135deg, rgba(29, 112, 28, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 3px solid #1d701c;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(29, 112, 28, 0.3),
                inset 0 0 30px rgba(29, 112, 28, 0.1);
    position: relative;
    overflow: hidden;
}

.verification-box-title,
.hire-box-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #1d701c;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(29, 112, 28, 0.5);
}

.verification-box-subtitle,
.hire-box-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.verification-instructions,
.hire-instructions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.verification-instructions .connect-wallet {
    width: 100%;
    background-color: #1d701c;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}

.verification-instructions .connect-wallet:hover {
    background-color: #25a023;
    box-shadow: 0 0 30px rgba(29, 112, 28, 0.6);
    transform: translateY(-2px);
}

.instruction-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #1d701c, #25a023);
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.6);
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.code-display-box,
.wallet-address-box {
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #1d701c;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: inset 0 0 20px rgba(29, 112, 28, 0.2);
}

.code-label,
.wallet-label,
.input-label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #1d701c;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.code-value-container,
.wallet-value-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-verification-code,
.payment-address,
.hire-code {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #25a023;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(37, 160, 35, 0.5);
    word-break: break-all;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.copy-code-button,
.copy-address-button {
    background-color: #1d701c;
    border: 2px solid #1d701c;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.copy-code-button:hover,
.copy-address-button:hover {
    background-color: #25a023;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.6);
    transform: scale(1.1);
}

.x-communities-input-box,
.hire-x-communities-box {
    margin: 20px 0;
}

.x-communities-input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #1d701c;
    border-radius: 10px;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s;
    margin-top: 8px;
}

.x-communities-input:focus {
    outline: none;
    border-color: #25a023;
    box-shadow: 0 0 20px rgba(29, 112, 28, 0.4);
}

.x-communities-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.submit-verification-btn,
.get-verification-btn {
    width: 100%;
    background-color: #1d701c;
    border: 2px solid #1d701c;
    color: #ffffff;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    margin-top: 15px;
}

.submit-verification-btn:hover,
.get-verification-btn:hover {
    background-color: #25a023;
    box-shadow: 0 0 30px rgba(29, 112, 28, 0.6);
    transform: translateY(-2px);
}

.hire-verification-display {
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #1d701c;
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 0 0 20px rgba(29, 112, 28, 0.2);
}

.verification-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    text-align: center;
    line-height: 1.5;
}

/* Success Animation */
.verification-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-animation {
    margin-bottom: 30px;
}

.success-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #1d701c;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successCircleExpand 0.6s ease-out;
    box-shadow: 0 0 40px rgba(29, 112, 28, 0.6);
}

@keyframes successCircleExpand {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-checkmark {
    width: 50px;
    height: 50px;
    position: relative;
    animation: checkmarkDraw 0.8s ease-out 0.3s both;
}

.success-checkmark::before {
    content: '✓';
    font-size: 60px;
    color: #25a023;
    text-shadow: 0 0 30px rgba(37, 160, 35, 0.8);
    animation: checkmarkGlow 2s ease-in-out infinite;
}

@keyframes checkmarkDraw {
    from {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes checkmarkGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(37, 160, 35, 0.8);
    }
    50% {
        text-shadow: 0 0 50px rgba(37, 160, 35, 1),
                     0 0 80px rgba(37, 160, 35, 0.6);
    }
}

.success-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #25a023;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(37, 160, 35, 0.5);
}

.success-message {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

/* Tablet optimization */
@media (max-width: 1024px) {
    header {
        padding: 18px 30px;
    }

    .hero-title {
        font-size: 60px;
    }

    .verification-hire-container {
        grid-template-columns: 1fr;
    }

    .agent-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Footer tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .main-footer {
        padding: 50px 30px 25px;
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .logo {
        gap: 10px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .eyes-icon {
        width: 50px;
        height: 50px;
    }

    nav {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .btn-outline {
        padding: 10px 15px;
        font-size: 11px;
    }

    .social-link-header {
        width: 36px;
        height: 36px;
    }

    .social-link-header svg {
        width: 16px;
        height: 16px;
    }

    .connect-wallet {
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .menu-btn {
        display: flex;
    }

    .ca-display {
        padding: 12px 20px;
    }

    .ca-label {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-right: 6px;
    }

    .ca-value {
        font-size: 12px;
        letter-spacing: 1.2px;
        word-break: break-all;
    }

    .license-banner {
        padding: 10px 20px;
    }

    .license-content {
        gap: 10px;
        font-size: 11px;
    }

    .license-badge,
    .license-badge-mit {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .license-badge-mit {
        padding: 4px 12px;
    }

    .license-divider {
        font-size: 14px;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 13px;
        padding: 6px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        max-width: 300px;
        padding: 14px 30px;
        font-size: 14px;
    }

    .agent-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .agent-description {
        padding: 15px;
    }

    .agent-description li {
        font-size: 12px;
    }

    .roadmap-item {
        padding-left: 60px;
    }

    .roadmap-line {
        left: 20px;
    }

    .roadmap-dot {
        left: 10px;
    }

    .roadmap-title {
        font-size: 16px;
    }

    .roadmap-description {
        font-size: 12px;
    }

    .verification-content {
        padding: 30px 20px;
    }

    .verification-title {
        font-size: 22px;
    }

    .verification-code {
        font-size: 14px;
    }

    .solution-content,
    .x402-content {
        padding: 30px 20px;
    }

    .solution-title,
    .x402-title {
        font-size: 24px;
    }

    .solution-text,
    .x402-description,
    .x402-benefit,
    .x402-final {
        font-size: 14px;
    }

    .revenue-chain {
        flex-direction: column;
    }

    .revenue-arrow {
        transform: rotate(90deg);
    }

    .revenue-step {
        width: 100%;
    }

    .x402-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .how-to-use-box {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: 16px;
        border-radius: 15px 15px 0 0;
        max-height: 70vh;
        overflow-y: auto;
    }

    .how-to-use-title {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .verification-code-display {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
    }

    .page-verification-code {
        font-size: 11px;
        text-align: center;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .copy-btn-inline {
        width: 100%;
        justify-content: center;
        padding: 10px;
        font-size: 12px;
    }

    .steps-title {
        font-size: 13px;
    }

    .steps-list li {
        font-size: 13px;
        padding-left: 30px;
    }

    .steps-list li::before {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .how-to-use-note p {
        font-size: 12px;
    }

    .close-box {
        width: 30px;
        height: 30px;
        font-size: 24px;
    }

    .menu-btn {
        display: flex;
    }

    .verification-hire-section {
        padding: 40px 15px;
    }

    .verification-hire-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .verification-box-main,
    .hire-box-main {
        padding: 25px 20px;
    }

    .verification-box-title,
    .hire-box-title {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .verification-box-subtitle,
    .hire-box-subtitle {
        font-size: 12px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .step-content p {
        font-size: 14px;
    }

    .code-display-box,
    .wallet-address-box,
    .hire-verification-display {
        padding: 15px;
    }

    .code-value-container,
    .wallet-value-container {
        flex-direction: column;
        align-items: stretch;
    }

    .main-verification-code,
    .payment-address,
    .hire-code {
        font-size: 11px;
        letter-spacing: 1px;
        text-align: center;
        padding: 12px;
    }

    .copy-code-button,
    .copy-address-button {
        width: 100%;
        height: 40px;
        margin-top: 10px;
    }

    .x-communities-input {
        font-size: 12px;
        padding: 12px;
    }

    .submit-verification-btn,
    .get-verification-btn {
        font-size: 14px;
        padding: 12px;
    }

    .success-circle {
        width: 100px;
        height: 100px;
    }

    .success-checkmark::before {
        font-size: 50px;
    }

    .success-title {
        font-size: 22px;
    }

    .success-message {
        font-size: 14px;
    }

    .mobile-nav-link {
        font-size: 18px;
    }

    .verification-instructions .connect-wallet {
        font-size: 14px;
        padding: 12px 20px;
    }

    /* Footer responsive */
    .main-footer {
        padding: 40px 20px 20px;
        margin-top: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-logo {
        justify-content: center;
    }

    .footer-eyes-icon {
        width: 40px;
        height: 40px;
    }

    .footer-logo h3 {
        font-size: 16px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-title {
        font-size: 13px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }

    .github-icon-footer {
        width: 20px;
        height: 20px;
    }

    .footer-ca-label {
        font-size: 10px;
    }

    .footer-ca-value {
        font-size: 11px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-disclaimer {
        font-size: 11px;
    }
}
