@font-face {
    font-family: 'SF Pro Rounded';
    src: url('fonts/SFProRounded-Regular.woff2') format('woff2'),
         url('fonts/SFProRounded-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Rounded';
    src: url('fonts/SFProRounded-Medium.woff2') format('woff2'),
         url('fonts/SFProRounded-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Rounded';
    src: url('fonts/SFProRounded-Bold.woff2') format('woff2'),
         url('fonts/SFProRounded-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

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

body {
    background-color: #000;
    font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108, 255, 50, 0.3) 0%, rgba(108, 255, 50, 0) 70%);
    border-radius: 50%;
    top: -350px;
    left: -350px;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108, 255, 50, 0.3) 0%, rgba(108, 255, 50, 0) 70%);
    border-radius: 50%;
    bottom: -350px;
    right: -350px;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 50px;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bnb-price {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(108, 255, 50, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(108, 255, 50, 0.3);
}

.price-label {
    color: #6cff32;
    font-size: 14px;
    font-weight: 600;
}

.price-value {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

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

.nav-btn {
    background: transparent;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-btn:hover {
    color: #6cff32;
}

html {
    scroll-behavior: smooth;
}

.header-btn {
    background: transparent;
    color: #6cff32;
    border: 2px solid #6cff32;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.header-btn:hover {
    background-color: #6cff32;
    color: #000;
}

.hero {
    padding: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 700px;
    flex-shrink: 0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    object-fit: contain;
}

.badge {
    display: inline-block;
    background: rgba(108, 255, 50, 0.15);
    color: #6cff32;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid #6cff32;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.btn-primary {
    background-color: #6cff32;
    color: #000;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #6cff32;
    color: #6cff32;
}

.live-payments {
    padding: 40px 40px 80px;
    position: relative;
    z-index: 10;
}

.live-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.live-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.live-indicator {
    background: transparent;
    color: #6cff32;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #6cff32;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.payments-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payments-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.payments-table th:nth-child(1),
.payments-table td:nth-child(1) {
    width: 15%;
    white-space: nowrap;
}

.payments-table th:nth-child(2),
.payments-table td:nth-child(2) {
    width: 15%;
    white-space: nowrap;
}

.payments-table th:nth-child(3),
.payments-table td:nth-child(3) {
    width: 12%;
    white-space: nowrap;
}

.payments-table th:nth-child(4),
.payments-table td:nth-child(4) {
    width: 13%;
}

.payments-table th:nth-child(5),
.payments-table td:nth-child(5) {
    width: 22%;
    white-space: nowrap;
}

.payments-table th:nth-child(6),
.payments-table td:nth-child(6) {
    width: 13%;
}

.payments-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.payments-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payments-table td {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 15px;
}

.payments-table tbody tr {
    transition: background 0.2s ease;
}

.payments-table tbody tr:hover {
    background: rgba(108, 255, 50, 0.05);
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge.user-legend {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid #ffd700;
}

.status-badge.user-premium {
    background: rgba(138, 43, 226, 0.15);
    color: #b388ff;
    border: 1px solid #b388ff;
}

.status-badge.user-active {
    background: rgba(108, 255, 50, 0.15);
    color: #6cff32;
    border: 1px solid #6cff32;
}

.status-badge.user-verified {
    background: rgba(33, 150, 243, 0.15);
    color: #42a5f5;
    border: 1px solid #42a5f5;
}

.status-badge.user-default {
    background: rgba(158, 158, 158, 0.15);
    color: #9e9e9e;
    border: 1px solid #9e9e9e;
}

.status-badge.confirmed {
    background: rgba(41, 128, 185, 0.15);
    color: #5dade2;
    border: 1px solid #5dade2;
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

.faq {
    padding: 80px 40px;
    position: relative;
    z-index: 10;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.faq-container {
    width: 100%;
}

.faq-item {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(108, 255, 50, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #6cff32;
}

.faq-icon {
    font-size: 28px;
    color: #6cff32;
    transition: transform 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.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;
    padding: 0 28px;
}

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

.faq-answer p {
    color: #999;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.footer {
    padding: 60px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-left {
    max-width: 500px;
}

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

.footer-description {
    color: #999;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 60px;
}

.footer-nav,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #6cff32;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

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

.modal-content {
    position: relative;
    background: #0a0a0a;
    border: 1px solid rgba(108, 255, 50, 0.2);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1001;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #6cff32;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    padding-right: 40px;
}

.modal-body {
    color: #999;
    font-size: 15px;
    line-height: 1.6;
}

.modal-body h3 {
    color: #6cff32;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

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

.modal-body p {
    margin: 0 0 15px 0;
}

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

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(108, 255, 50, 0.3);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(108, 255, 50, 0.5);
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        gap: 40px;
        padding: 30px 30px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-image img {
        max-height: 400px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .live-payments {
        padding: 30px 30px 60px;
    }
    
    .live-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav {
        display: none;
    }
    
    .bnb-price {
        display: none;
    }
    
    .header-right {
        margin-left: auto;
    }
    
    .header-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero {
        padding: 20px 20px;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-image img {
        max-height: 300px;
    }
    
    .live-payments {
        padding: 20px 20px 40px;
    }
    
    .live-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .live-title {
        font-size: 28px;
        text-align: center;
    }
    
    .payments-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display: block;
        width: 100%;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .payments-table table {
        min-width: 850px;
        display: table;
        table-layout: auto;
    }
    
    .payments-table th,
    .payments-table td {
        padding: 15px 10px;
        font-size: 13px;
    }
    
    body::before,
    body::after {
        width: 400px;
        height: 400px;
    }
    
    .faq {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-icon {
        font-size: 24px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .footer {
        padding: 40px 20px 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .header-right {
        margin-left: auto;
    }
    
    .header-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero {
        padding: 15px 15px;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 24px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .badge {
        font-size: 12px;
        padding: 6px 14px;
        text-align: center;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
    }
    
    .hero-image img {
        max-height: 250px;
    }
    
    .live-payments {
        padding: 15px 15px 30px;
    }
    
    .live-header {
        align-items: center;
        justify-content: center;
    }
    
    .live-title {
        font-size: 24px;
        text-align: center;
    }
    
    .live-indicator {
        padding: 5px 14px;
        font-size: 12px;
    }
    
    .payments-table th,
    .payments-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .status-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    body::before {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px;
    }
    
    body::after {
        width: 300px;
        height: 300px;
        bottom: -150px;
        right: -150px;
    }
    
    .faq {
        padding: 30px 15px;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 15px;
    }
    
    .faq-icon {
        font-size: 22px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px 16px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .footer {
        padding: 30px 15px 20px;
    }
    
    .footer-logo img {
        height: 35px;
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .modal-content {
        padding: 30px 20px;
        max-height: 85vh;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
    }
    
    .modal-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .modal-body {
        font-size: 14px;
    }
    
    .modal-body h3 {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }
}

