@font-face {
    font-family: 'Teodor';
    src: url('./fonts/TeodorTRIALVF-Uprights-BF672198fbb0fb8.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Teodor';
    src: url('./fonts/TeodorTRIALVF-Italics-BF672198fbafca5.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: radial-gradient(ellipse at center, #ffffff 0%, #f0fcfd 30%, #e8f9fa 60%, #d4f1f4 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

.header-hero-background {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 900px;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Teodor', serif;
}

.header {
    background-color: #fff;
    padding: 20px 0;
    margin: 20px auto;
    max-width: 1100px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 180px;
    height: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}

.launch-btn {
    background-color: #75e6da;
    color: #1a1a1a;
    border: none;
    padding: 12px 28px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.launch-btn:hover {
    background-color: #5dd9ce;
}

.hero {
    padding: 100px 0;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 1;
}

.hero .container {
    display: block;
}

.hero-blob {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0 auto 40px auto;
    display: block;
}

.hero-title {
    font-size: 64px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.italic-text {
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #a0a0a0;
    margin: 0 auto 40px auto;
    max-width: 500px;
    line-height: 1.6;
}

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

.btn-primary {
    background-color: #75e6da;
    color: #1a1a1a;
    border: none;
    padding: 16px 40px;
    border-radius: 28px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #5dd9ce;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #75e6da;
    padding: 15px 39px;
    border-radius: 28px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #75e6da;
    border-color: #75e6da;
    transform: translateY(-2px);
}

.live-charts,
.instructions-section,
.faq-section {
    position: relative;
}

.pulsing-balls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pulsing-ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(117, 230, 218, 0.4), rgba(117, 230, 218, 0.2), rgba(117, 230, 218, 0.05));
    animation: pulse 3s ease-in-out infinite;
    filter: blur(20px);
}

.ball-live {
    width: 350px;
    height: 350px;
    top: 25%;
    right: 4%;
    animation-delay: 0s;
}

.ball-instructions {
    width: 320px;
    height: 320px;
    top: 15%;
    left: 2%;
    animation-delay: 0.5s;
}

.ball-faq {
    width: 340px;
    height: 340px;
    top: 45%;
    right: 3%;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@media (max-width: 760px) {
    .header-hero-background {
        height: 750px;
    }

    .header {
        margin: 12px 16px;
        max-width: calc(100% - 32px);
        border-radius: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .logo-icon {
        width: 120px;
    }

    .nav-link {
        display: none;
    }

    .nav {
        gap: 0;
    }

    .launch-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-blob {
        max-width: 80px;
        margin-bottom: 30px;
    }

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

    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 32px;
        font-size: 16px;
    }

    .btn-secondary {
        padding: 13px 31px;
    }

    .ball-live {
        width: 150px;
        height: 150px;
        right: 1%;
        top: 20%;
    }

    .ball-instructions {
        width: 130px;
        height: 130px;
        left: 1%;
        top: 10%;
    }

    .ball-faq {
        width: 140px;
        height: 140px;
        right: 2%;
        top: 40%;
    }
}

.live-charts {
    padding: 80px 0 40px 0;
    background: transparent;
}

.live-charts .container {
    display: block;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    text-align: center;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0 auto 50px auto;
    text-align: center;
    max-width: 700px;
}

.update-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding: 4px 12px;
    background-color: rgba(117, 230, 218, 0.1);
    border-radius: 12px;
}

.update-dot {
    width: 8px;
    height: 8px;
    background-color: #75e6da;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.update-text {
    font-size: 13px;
    color: #0a9396;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hype-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e8f9fa;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(117, 230, 218, 0.15);
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-family: 'Teodor', serif;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.stat-change {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.stat-change.positive {
    background-color: #d4f1f4;
    color: #0a9396;
}

.stat-change.negative {
    background-color: #ffe4e4;
    color: #e63946;
}

.stat-subvalue {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.stat-subvalue.positive {
    color: #0a9396;
}

.stat-subvalue.negative {
    color: #e63946;
}

.hype-transactions-container {
    background-color: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e8f9fa;
}

.transactions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.transactions-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.asset-symbol {
    font-family: 'Teodor', serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
}

.asset-name {
    font-size: 16px;
    font-weight: 400;
    color: #999;
}

.transactions-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(117, 230, 218, 0.15);
    border-radius: 12px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #0a9396;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-text {
    font-size: 14px;
    font-weight: 500;
    color: #0a9396;
}

.transactions-table {
    width: 100%;
}

.transactions-table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.2fr;
    gap: 16px;
    padding: 16px 20px;
    background-color: #f8feff;
    border-radius: 12px;
    margin-bottom: 12px;
}

.transactions-table-header > div {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.transaction-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.2fr;
    gap: 16px;
    padding: 20px;
    background-color: #fafffe;
    border: 1px solid #e8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out;
}

.transaction-row:hover {
    background-color: #f0fcfd;
    border-color: #75e6da;
    transform: translateX(4px);
}

.transaction-row.removing {
    animation: slideOut 0.5s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateY(20px);
        height: 0;
        padding: 0;
        margin: 0;
    }
}

.tx-hash {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tx-address {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tx-amount {
    font-family: 'Teodor', serif;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
}

.tx-amount-usd {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.transaction-loading {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .header {
        margin: 16px 24px;
        max-width: calc(100% - 48px);
        border-radius: 80px;
    }

    .hype-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .section-title {
        font-size: 40px;
    }

    .stat-value {
        font-size: 28px;
    }

    .transactions-table-header {
        grid-template-columns: 2fr 1.3fr 1.3fr 1.2fr;
        gap: 12px;
        padding: 14px 16px;
    }

    .transaction-row {
        grid-template-columns: 2fr 1.3fr 1.3fr 1.2fr;
        gap: 12px;
        padding: 18px 16px;
    }

    .tx-hash {
        font-size: 13px;
    }

    .tx-address {
        font-size: 12px;
    }
}

@media (max-width: 760px) {
    .live-charts {
        padding: 60px 0 40px 0;
    }

    .section-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .section-subtitle {
        font-size: 14px;
        margin: 0 auto 40px auto;
        padding: 0 20px;
    }

    .update-indicator {
        display: flex;
        margin-left: 0;
        margin-top: 8px;
    }

    .update-text {
        font-size: 12px;
    }

    .hype-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-value {
        font-size: 24px;
    }

    .hype-transactions-container {
        padding: 20px;
    }

    .transactions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .asset-symbol {
        font-size: 24px;
    }

    .transactions-status {
        padding: 6px 12px;
    }

    .status-text {
        font-size: 12px;
    }

    .transactions-table-header {
        display: none;
    }

    .transaction-row {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 12px;
    }

    .transaction-row > div {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .transaction-row > div::before {
        content: attr(data-label);
        font-size: 11px;
        font-weight: 600;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .tx-hash, .tx-address {
        font-size: 12px;
    }

    .tx-amount {
        font-size: 14px;
    }
}

.instructions-section {
    padding: 40px 0 40px 0;
    background: transparent;
}

.instructions-section .container {
    display: block;
    position: relative;
    z-index: 1;
}

.instructions-content {
    max-width: 1100px;
    margin: 0 auto;
}

.instructions-image {
    width: 100%;
    margin-bottom: 100px;
}

.instructions-steps {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.instructions-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.instruction-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    flex: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    background-color: #75e6da;
    color: #1a1a1a;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Teodor', serif;
    font-size: 28px;
    font-weight: 400;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Teodor', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.step-description {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-section {
    padding: 40px 0 100px 0;
    background: transparent;
}

.faq-section .container {
    display: block;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e8f9fa;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #75e6da;
    box-shadow: 0 4px 16px rgba(117, 230, 218, 0.1);
}

.faq-item.active {
    border-color: #75e6da;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f8feff;
}

.faq-question-text {
    font-family: 'Teodor', serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 28px;
    color: #75e6da;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 28px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .instructions-steps {
        flex-direction: column;
        gap: 32px;
    }
    
    .instruction-step {
        flex-direction: row;
        gap: 24px;
    }
}

@media (max-width: 760px) {
    .instructions-section {
        padding: 40px 0 40px 0;
    }

    .instructions-content {
        gap: 40px;
    }

    .instructions-steps {
        flex-direction: column;
        gap: 24px;
        padding: 0 20px;
    }

    .instruction-step {
        flex-direction: row;
        gap: 16px;
        padding: 0;
    }

    .instructions-image {
        padding: 0 20px;
    }

    .instructions-image img {
        border-radius: 16px;
    }

    .step-number {
        min-width: 48px;
        height: 48px;
        font-size: 24px;
        border-radius: 12px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 15px;
    }

    .faq-section {
        padding: 40px 0 80px 0;
    }

    .faq-item {
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question-text {
        font-size: 17px;
        padding-right: 12px;
    }

    .faq-icon {
        font-size: 24px;
        min-width: 24px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

.footer {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(117, 230, 218, 0.3);
    padding: 40px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 140px;
    height: auto;
}

.footer-copyright {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-link {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #1a1a1a;
}

@media (max-width: 760px) {
    .footer {
        padding: 32px 20px;
    }

    .footer .container {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 0 20px;
    }

    .footer-logo {
        width: 120px;
    }

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

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0 20px;
    }

    .footer-link {
        font-size: 14px;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #f8feff;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10001;
    line-height: 1;
}

.modal-close:hover {
    background-color: #75e6da;
    color: #1a1a1a;
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 24px 40px;
    border-bottom: 1px solid #e8f9fa;
}

.modal-title {
    font-family: 'Teodor', serif;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.modal-body {
    padding: 32px 40px 40px 40px;
    overflow-y: auto;
    max-height: calc(85vh - 120px);
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f8feff;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #75e6da;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #5dd9ce;
}

.modal-body h3 {
    font-family: 'Teodor', serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 24px 0 12px 0;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }

    .modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .modal-header {
        padding: 32px 24px 20px 24px;
    }

    .modal-title {
        font-size: 26px;
        padding-right: 40px;
    }

    .modal-body {
        padding: 24px;
        max-height: calc(90vh - 100px);
    }

    .modal-body h3 {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }

    .modal-body p {
        font-size: 14px;
    }
}
