* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 30, 30, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20, 20, 20, 0.6) 0%, transparent 50%);
    z-index: -1;
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: matrixMove 20s linear infinite;
}

@keyframes matrixMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease;
    overflow-y: auto;
    padding: 20px;
}

.popup-content {
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border-radius: 25px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 3px solid #25D366;
    position: relative;
    animation: slideUp 0.5s ease;
    overflow-y: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.close-btn:hover {
    color: #ff5555;
    background: rgba(255, 85, 85, 0.1);
}

.whatsapp-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.popup-title {
    font-size: 2rem;
    background: linear-gradient(90deg, #25D366, #128C7E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.whatsapp-number {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid #25D366;
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
    font-size: 1.3rem;
    font-weight: bold;
    color: #25D366;
}

.features-list {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #e0e0e0;
}

.features-list li:before {
    content: "✓";
    color: #25D366;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.buy-now-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    margin: 15px 0;
    border: none;
    cursor: pointer;
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.development-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin-top: 25px;
    text-align: center;
}

.notice-title {
    color: #ffc107;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1rem;
}

.notice-text {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.report-btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #ffc107;
    transition: all 0.3s ease;
}

.report-btn:hover {
    background: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

