@font-face {
    font-family: 'KHTeka';
    src: url('KHTeka-Regular.10ca8cc70e70ade89345.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'KHTeka';
    src: url('KHTeka-Medium.1d362a103d9730ae720f.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'KHTeka';
    src: url('KHTeka-Bold.778088fa67f17d0f3a28.otf') format('opentype');
    font-weight: 700;
}

* {
    font-family: 'KHTeka', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    background: #E8F1FB;
    color: #0E1120;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

/* Navbar */
.navbar {
    padding: 8px 0;
    text-align: center;
}

.logo {
    height: 20px;
}


/* Hero */
.hero {
    padding: 16px 0 12px;
    text-align: center;
}

.badge {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #FF0083;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 8px;
}


.badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FF0083, #7928CA);
    border-radius: 1px;
}


.title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0E1120;
}

.title span {
    background: linear-gradient(135deg, #FF0083 0%, #7928CA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 14px;
    color: rgba(14, 17, 32, 0.6);
    line-height: 1.4;
}

/* Info Sections - Stacked */
.info-section {
    padding: 12px 0;
}

.info-box {
    background: #fafafa;
    border: 1px solid rgba(14, 17, 32, 0.06);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
}

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

.info-title {
    font-size: 16px;
    font-weight: 600;
    color: #0E1120;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #FF0083 0%, #7928CA 100%);
    border-radius: 2px;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(14, 17, 32, 0.05);
}

.item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 0, 131, 0.1) 0%, rgba(121, 40, 202, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.item-icon img {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.item-icon.gradient {
    background: linear-gradient(135deg, #FF0083 0%, #7928CA 100%);
}

.item-icon.gradient svg {
    color: #fff;
    width: 20px;
    height: 20px;
}

/* Animated SVG Icons - Drawing Effect */
.animated-icon .draw-icon {
    width: 22px;
    height: 22px;
}

.animated-icon .draw-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLineLoop 4s ease infinite;
}

.animated-icon .draw-path.delay-1 {
    animation-delay: 0.3s;
}

.animated-icon .draw-path.delay-2 {
    animation-delay: 0.6s;
}

.animated-icon .draw-path.delay-3 {
    animation-delay: 0.9s;
}

/* Animation with 2s pause: draw for ~1.5s, stay visible for ~2s, then repeat */
@keyframes drawLineLoop {
    0% {
        stroke-dashoffset: 100;
    }

    37.5% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Hover - faster animation */
.item:hover .animated-icon .draw-path {
    animation: drawLineFast 0.8s ease forwards;
}

.item:hover .animated-icon .draw-path.delay-1 {
    animation-delay: 0.15s;
}

.item:hover .animated-icon .draw-path.delay-2 {
    animation-delay: 0.3s;
}

.item:hover .animated-icon .draw-path.delay-3 {
    animation-delay: 0.45s;
}

@keyframes drawLineFast {
    0% {
        stroke-dashoffset: 100;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Gradient icon drawing */
.item-icon.gradient .draw-path {
    stroke: #fff;
}

.item-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0E1120;
    margin-bottom: 3px;
}

.item-text p {
    font-size: 13px;
    color: rgba(14, 17, 32, 0.55);
    line-height: 1.3;
}

/* Wallet Section */
.wallet-section {
    padding: 16px 0;
    text-align: center;
}

.wallet-label {
    font-size: 16px;
    font-weight: 600;
    color: #0E1120;
    margin-bottom: 6px;
}

.wallet-desc {
    font-size: 13px;
    color: rgba(14, 17, 32, 0.5);
    margin-bottom: 14px;
}

.wallet-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    min-width: 140px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.5s ease;
}

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

.btn-sol {
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    box-shadow: 0 4px 18px rgba(153, 69, 255, 0.3);
}

.btn-sol:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(153, 69, 255, 0.4);
}

.btn-eth {
    background: linear-gradient(135deg, #627EEA 0%, #8B9FEF 100%);
    box-shadow: 0 4px 18px rgba(98, 126, 234, 0.3);
}

.btn-eth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(98, 126, 234, 0.4);
}

.btn svg {
    width: 22px;
    height: 22px;
}

@keyframes pulse-sol {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(153, 69, 255, 0.3);
    }

    50% {
        box-shadow: 0 4px 24px rgba(153, 69, 255, 0.45);
    }
}

@keyframes pulse-eth {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(98, 126, 234, 0.3);
    }

    50% {
        box-shadow: 0 4px 24px rgba(98, 126, 234, 0.45);
    }
}

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

.btn-eth {
    animation: pulse-eth 2s ease-in-out infinite;
    animation-delay: 1s;
}

.btn:hover {
    animation: none;
}

/* Footer */
.footer {
    padding: 16px 0;
    background: #fafafa;
    text-align: center;
    margin-top: auto;
}

.footer-logo {
    height: 22px;
    margin-bottom: 12px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(14, 17, 32, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(14, 17, 32, 0.45);
    transition: all 0.2s;
    text-decoration: none;
}

.social a:hover {
    border-color: #FF0083;
    color: #FF0083;
}

.social svg {
    width: 16px;
    height: 16px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.links a {
    color: rgba(14, 17, 32, 0.4);
    text-decoration: none;
    font-size: 12px;
}

.links a:hover {
    color: #FF0083;
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 13px;
    }

    .info-box {
        padding: 14px;
    }

    .item {
        padding: 10px 12px;
    }

    .item-icon {
        width: 36px;
        height: 36px;
    }

    .item-icon img {
        width: 20px;
        height: 20px;
    }

    .item-text h4 {
        font-size: 14px;
    }

    .item-text p {
        font-size: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 24px;
    }

    .navbar {
        padding: 16px 0;
    }

    .logo {
        height: 28px;
    }

    .hero {
        padding: 40px 0 30px;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 0, 131, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        right: -80px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(121, 40, 202, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .badge {
        font-size: 20px;
        letter-spacing: 5px;
        margin-bottom: 14px;
    }

    .title {
        font-size: 38px;
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 17px;
        max-width: 500px;
        margin: 0 auto;
    }

    .info-section {
        padding: 24px 0;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .info-box {
        padding: 24px;
        margin-bottom: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .info-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(14, 17, 32, 0.08);
    }

    .info-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .list {
        gap: 14px;
    }

    .item {
        padding: 16px 18px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .item:hover {
        transform: translateX(4px);
        box-shadow: 0 4px 16px rgba(14, 17, 32, 0.06);
    }

    .item-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .item-icon img {
        width: 26px;
        height: 26px;
    }

    .item-icon.gradient svg {
        width: 24px;
        height: 24px;
    }

    .item-text h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .item-text p {
        font-size: 14px;
    }

    .wallet-section {
        padding: 32px 0;
    }

    .wallet-label {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .wallet-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .wallet-btns {
        gap: 20px;
    }

    .btn {
        padding: 18px 50px;
        min-width: 180px;
        border-radius: 16px;
        font-size: 18px;
        gap: 12px;
    }

    .btn svg {
        width: 26px;
        height: 26px;
    }

    .footer {
        padding: 28px 0;
    }

    .footer-logo {
        height: 28px;
        margin-bottom: 16px;
    }

    .social {
        gap: 14px;
        margin-bottom: 14px;
    }

    .social a {
        width: 44px;
        height: 44px;
    }

    .social svg {
        width: 20px;
        height: 20px;
    }

    .links {
        gap: 24px;
    }

    .links a {
        font-size: 14px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .container {
        max-width: 1100px;
        padding: 0 40px;
    }

    .navbar {
        padding: 24px 0;
    }

    .logo {
        height: 32px;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero::before {
        width: 400px;
        height: 400px;
        left: 5%;
        top: -100px;
    }

    .hero::after {
        width: 350px;
        height: 350px;
        right: 10%;
    }

    .badge {
        font-size: 22px;
        letter-spacing: 6px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .badge::after {
        width: 50px;
        height: 3px;
    }

    .title {
        font-size: 52px;
        margin-bottom: 16px;
    }

    .subtitle {
        font-size: 20px;
        max-width: 600px;
        line-height: 1.5;
    }

    .info-section {
        padding: 40px 0;
    }

    .info-grid {
        gap: 32px;
    }

    .info-box {
        padding: 32px;
        border-radius: 20px;
    }

    .info-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .info-title::before {
        height: 22px;
        width: 5px;
    }

    .list {
        gap: 16px;
    }

    .item {
        padding: 20px 22px;
        border-radius: 14px;
        gap: 16px;
    }

    .item-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .item-icon img {
        width: 30px;
        height: 30px;
    }

    .item-icon.gradient svg {
        width: 28px;
        height: 28px;
    }

    .item-text h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .item-text p {
        font-size: 15px;
        line-height: 1.4;
    }

    .wallet-section {
        padding: 50px 0;
    }

    .wallet-label {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .wallet-desc {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .wallet-btns {
        gap: 28px;
    }

    .btn {
        padding: 22px 60px;
        min-width: 220px;
        border-radius: 18px;
        font-size: 20px;
    }

    .btn svg {
        width: 30px;
        height: 30px;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-logo {
        height: 32px;
        margin-bottom: 20px;
    }

    .social {
        gap: 18px;
        margin-bottom: 18px;
    }

    .social a {
        width: 50px;
        height: 50px;
    }

    .social svg {
        width: 22px;
        height: 22px;
    }

    .links {
        gap: 32px;
    }

    .links a {
        font-size: 15px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .hero::before {
        width: 500px;
        height: 500px;
    }

    .hero::after {
        width: 450px;
        height: 450px;
    }

    .title {
        font-size: 60px;
    }

    .subtitle {
        font-size: 22px;
        max-width: 680px;
    }
}