* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    padding-top: 80px;
}

.navbar {
    background-color: white;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 60px;
    width: auto;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar-link {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-link:hover {
    color: #dc2626;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1f2937;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-link {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background-color: #f9fafb;
    color: #dc2626;
}

.mobile-link:last-child {
    border-bottom: none;
}

.hero {
    background-color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-button {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 80vh;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.second-section {
    background-color: #000000;
    padding: 6rem 0;
}

.second-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.second-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.second-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.second-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.second-description {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.second-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.second-link:hover {
    border-bottom-color: #dc2626;
}

.rules-section {
    background-color: #000000;
    padding: 6rem 0;
}

.rules-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rules-content {
    z-index: 2;
}

.rules-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.rules-item {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.rules-item:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.rules-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.rules-link:hover {
    border-bottom-color: #dc2626;
}

.rules-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rules-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

.wallets-section {
    background-color: white;
    padding: 6rem 0;
}

.wallets-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wallets-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 4rem;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.wallet-card {
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.wallet-card:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
}

.wallet-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wallet-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wallet-icon {
    width: 32px;
    height: 32px;
}

.wallet-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.wallet-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

.reward-text {
    font-weight: 700;
    color: #1f2937;
}

.currency-text {
    font-weight: 700;
    color: #dc2626;
}

.wallet-address-block {
    display: flex;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.wallet-address {
    flex: 1;
    padding: 1rem;
    border: none;
    background-color: #f9fafb;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #374151;
    outline: none;
}

.copy-btn {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.copy-btn:hover {
    background-color: #b91c1c;
}

.wallet-qr {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code {
    width: 130px;
    height: 130px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.live-faq-section {
    background-color: #000000;
    padding: 6rem 0;
}

.live-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.live-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4rem;
    text-align: center;
}

.highlight-text {
    color: #dc2626;
}

.transactions-table {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #333;
}

#liveTransactionsTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

#liveTransactionsTable th {
    background-color: #2a2a2a;
    color: white;
    padding: 1rem 0.5rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #333;
}

#liveTransactionsTable td {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #333;
    color: #d1d5db;
}

.address-cell {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.status-ok {
    color: #22c55e;
    font-weight: 600;
}

.coin-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
}

.coin-icon img {
    margin-right: 0.3rem;
}

.new-transaction {
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #dc2626;
}

.faq-question {
    padding: 1.5rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #2a2a2a;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #dc2626;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #d1d5db;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar {
        position: relative;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
        position: relative;
        z-index: 3;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-content {
        position: relative;
        z-index: 3;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .second-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .second-title {
        font-size: 2rem;
    }
    
    .second-description {
        font-size: 1rem;
    }
    
    .rules-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .rules-title {
        font-size: 2rem;
    }
    
    .rules-item {
        font-size: 1rem;
        text-align: left;
    }
    
    .wallet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wallet-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .wallet-qr {
        display: none;
    }
    
    .wallets-title {
        font-size: 2rem;
    }
    
    .wallet-name {
        font-size: 1.25rem;
    }
    
    .wallet-description {
        font-size: 1rem;
    }
    
    .live-faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    #liveTransactionsTable {
        font-size: 0.8rem;
    }
    
    #liveTransactionsTable th,
    #liveTransactionsTable td {
        padding: 0.6rem 0.3rem;
    }
    
    .address-cell {
        font-size: 0.7rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

.footer {
    background-color: #1a1a1a;
    padding: 3rem 0;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }
    
    .footer-container {
        padding: 0 1rem;
        gap: 0.8rem;
    }
    
    .footer-logo {
        height: 60px;
        margin-bottom: 0.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}