* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

/* Loader with Snake Game */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content { text-align: center; }

.loader-title {
    font-size: 24px;
    color: #00ff99;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00ff99;
    letter-spacing: 2px;
}

.snake-game-container {
    background: #111;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #00ff9933;
    box-shadow: 0 0 30px #00ff9922;
    margin-bottom: 20px;
}

#snakeCanvas {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    background: #1a1a1a;
    box-shadow: inset 0 0 20px #000;
}

.snake-status {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: #888;
    font-size: 14px;
}

.snake-score span,
.snake-length span {
    color: #fff;
    font-weight: bold;
}

.loader-message {
    margin-top: 20px;
    color: #00ff99;
    font-size: 16px;
    font-family: monospace;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
/* Header */
header {
    padding: 25px 50px;
    border-bottom: 1px solid #00ff9922;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo i {
    color: #00ff99;
    margin-right: 10px;
    animation: spin 10s linear infinite;
}

.logo span {
    color: #00ff99;
    text-shadow: 0 0 10px #00ff99;
}

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

.lolz-badge {
    background: linear-gradient(135deg, #00ff9922, #00cc7722);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid #00ff99;
    color: #00ff99;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lolz-badge i {
    color: #00ff99;
}

/* Deposit Section */
.deposit-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.deposit-card {
    background: #121212;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px #00ff9922;
    width: 450px;
    border: 1px solid #00ff9933;
    position: relative;
    overflow: hidden;
    animation: glow 3s ease-in-out infinite;
}

.deposit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff99, transparent);
    animation: scan 3s linear infinite;
}

.lolz-stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00ff9911;
    color: #00ff99;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #00ff9933;
}

.lolz-stamp i {
    margin-right: 5px;
}

.deposit-card h2 {
    color: #ccc;
    font-size: 20px;
    margin-bottom: 15px;
}

.deposit-card h2 i {
    color: #00ff99;
    margin-left: 8px;
}

.deposit-amount {
    font-size: 48px;
    color: #00ff99;
    margin: 15px 0;
    font-weight: bold;
    text-shadow: 0 0 20px #00ff99;
    animation: countPulse 2s ease-in-out infinite;
}

.deposit-details {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    color: #888;
}

.detail-item .value.verified {
    color: #00ff99;
}

.detail-item .value.profit {
    color: #ffd700;
}

.detail-item i {
    margin-right: 5px;
}

.deposit-progress {
    margin: 20px 0;
}

.progress-bar {
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff99, #00cc77);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, #ffffff55);
    animation: shine 2s infinite;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 14px;
    color: #888;
}

.deposit-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #666;
}

.deposit-footer i {
    margin-right: 5px;
}

/* Transaction History */
.transaction-history {
    background: #121212;
    padding: 30px;
    border-radius: 20px;
    width: 350px;
    border: 1px solid #333;
}

.transaction-history h3 {
    margin-bottom: 20px;
    color: #00ff99;
}

.transaction-history h3 i {
    margin-left: 8px;
}

.lolz-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 12px;
}

.lolz-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #00ff99;
}

.lolz-user-details {
    display: flex;
    flex-direction: column;
}

.lolz-username {
    color: #00ff99;
    font-weight: bold;
}

.lolz-rating {
    font-size: 12px;
    color: #ffd700;
}

.lolz-rating i {
    margin-right: 3px;
}

.transaction-list {
    max-height: 300px;
    overflow-y: auto;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #222;
    font-size: 14px;
    transition: transform 0.3s;
}

.transaction-item:hover {
    transform: translateX(5px);
    background: #1a1a1a;
    padding-left: 10px;
    border-radius: 8px;
}

.transaction-item:last-child {
    border-bottom: none;
}

.tx-type.deposit {
    color: #00ff99;
}

.tx-type.fee {
    color: #ff6b6b;
}

.tx-amount {
    font-weight: bold;
}

.tx-time {
    color: #666;
    font-size: 12px;
}

.lolz-verify {
    color: #00ff99 !important;
    margin-left: 5px;
}

.lolz-escrow {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #00ff9911, #00cc7711);
    border: 1px solid #00ff9933;
    border-radius: 12px;
    text-align: center;
    color: #00ff99;
    font-size: 14px;
}

.lolz-escrow i {
    margin-right: 8px;
}

/* Info Cards */
.info {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: #141414;
    padding: 30px;
    width: 350px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #00ff9944;
    box-shadow: 0 10px 30px #00ff9922;
}

.lolz-card {
    background: linear-gradient(135deg, #141414, #1a1a1a);
    border: 1px solid #00ff9933;
}

.lolz-profile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.lolz-crown {
    color: #ffd700;
    font-size: 24px;
}

.lolz-profile-name {
    font-size: 20px;
    font-weight: bold;
    color: #00ff99;
}

.lolz-verified-badge {
    background: #00ff9911;
    color: #00ff99;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #00ff9933;
}

.lolz-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #00ff99;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.lolz-profile-link {
    text-align: center;
}

.lolz-profile-link a {
    color: #00ff99;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lolz-profile-link a:hover {
    text-decoration: underline;
}

.info-card h3 {
    color: #00ff99;
    margin-bottom: 20px;
}

.info-card h3 i {
    margin-right: 10px;
}

.lolz-features {
    list-style: none;
}

.lolz-features li {
    margin-bottom: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lolz-green {
    color: #00ff99 !important;
}

/* Telegram Section */
.telegram {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, transparent, #00ff9905);
}

.telegram h2 {
    color: #00ff99;
    margin-bottom: 30px;
}

.telegram h2 i {
    margin-right: 10px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.lolz-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00ff99, #00cc77);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.lolz-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fff, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.lolz-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #00ff99;
}

.lolz-button:hover::before {
    opacity: 0.1;
}

.lolz-button i {
    font-size: 18px;
}

.online-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid #00ff9933;
}

.dot {
    width: 10px;
    height: 10px;
    background: #00ff99;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.lolz-badge-mini {
    color: #00ff99;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    opacity: 0.6;
    font-size: 14px;
    border-top: 1px solid #222;
}

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

.lolz-footer-badge {
    color: #00ff99;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lolz-trust {
    color: #00ff99;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Diamonds */
.diamond {
    position: fixed;
    width: 260px;
    height: 260px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    opacity: 0.2;
    animation: float 12s ease-in-out infinite;
    filter: drop-shadow(0 0 40px #00ff99aa);
    z-index: -1;
}

.d1 {
    background-image: url("diamond1.webp");
    top: 5%;
    left: 3%;
}

.d2 {
    background-image: url("diamond2.webp");
    bottom: 8%;
    right: 5%;
    animation-delay: 3s;
}

.d3 {
    background-image: url("diamond3.webp");
    top: 55%;
    left: 10%;
    animation-delay: 6s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0);
        box-shadow: 0 5px 15px rgba(0,255,153,0.2);
    }
    50% { 
        transform: translateY(-20px);
        box-shadow: 0 25px 30px rgba(0,255,153,0.4);
    }
}

@keyframes messageCycle {
    0%, 20% { opacity: 1; transform: translateY(0); }
    25%, 95% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 0; transform: translateY(0); }
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(500%); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 30px #00ff9922; }
    50% { box-shadow: 0 20px 50px #00ff9944; }
}

@keyframes countPulse {
    0%, 100% { text-shadow: 0 0 20px #00ff99; }
    50% { text-shadow: 0 0 40px #00ff99; }
}

@keyframes float {
    0%,100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(8deg); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #00ff9933;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ff9966;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .deposit-card, .transaction-history {
        width: 100%;
        max-width: 450px;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .loader-logo {
        font-size: 32px;
    }
    
    .loader-logo i {
        font-size: 40px;
    }
    
    .loader-card {
        width: 60px;
        height: 80px;
    }
}
