/* Hacker Theme for Shadow Mailer */
body {
    background-color: #0d0208;
    color: #00ff00;
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    font-size: 15px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Utilities */
.text-success {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.text-danger {
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
}

.log-container {
    background-color: #000;
    padding: 15px;
    border-radius: 5px;
    height: 300px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    border: 1px solid #00ff00;
}

.log-entry {
    border-bottom: 1px solid #003300;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.log-time {
    color: #008800;
    margin-right: 10px;
}

.log-action {
    color: #00ff00;
    margin-right: 10px;
}

.log-details {
    color: #00cc00;
}

#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main-container {
    position: relative;
    z-index: 1;
    /* Make it slightly transparent to see the background */
    background-color: rgba(13, 2, 8, 0.1);
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-right: 1px solid #00ff00;
    backdrop-filter: blur(5px);
}

.sidebar-header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #00ff00;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
    margin-bottom: 10px;
}

.sidebar-header h1 {
    color: #00ff00;
    margin: 0;
}

.dev-name {
    color: #00ff00;
    font-size: 14px;
    margin-top: 5px;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    margin-top: 10px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-premium {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
    color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.badge-free {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff3333;
    color: #ff3333;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li a {
    display: block;
    padding: 15px 20px;
    color: #00ff00;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    transition: background-color 0.3s, text-shadow 0.3s;
}

.sidebar ul li a:hover,
.sidebar ul li.active a {
    background-color: rgba(255, 0, 0, 0.2);
    text-shadow: 0 0 5px #ff0000;
}

.content {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
}

.template-label {
    background-color: rgba(255, 0, 0, 0.2);
    padding: 5px 10px;
    border-left: 3px solid #ff0000;
    display: block;
    margin-bottom: 10px;
}


/* Form elements */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5) inset;
    transition: box-shadow 0.3s, border-color 0.3s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7) inset, 0 0 10px rgba(255, 0, 0, 0.5);
}

button {
    background-color: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
}

button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 0, 0, 0.4), transparent);
    transition: left 0.4s;
}

button:hover:before {
    left: 100%;
}

button:hover {
    color: #fff;
    text-shadow: 0 0 10px #ff0000;
}

@keyframes button-frame {

    0%,
    100% {
        clip-path: inset(0 95% 95% 0);
    }

    25% {
        clip-path: inset(0 0 95% 95%);
    }

    50% {
        clip-path: inset(95% 0 0 95%);
    }

    75% {
        clip-path: inset(95% 95% 0 0);
    }
}

button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #00ff00;
    animation: button-frame 4s linear infinite;
}

/* Footer Styles */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 250px;
    /* Offset by sidebar width */
    width: calc(100% - 250px);
    background-color: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #00ff00;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.content {
    padding-bottom: 80px;
    /* Space for fixed footer */
}

.footer-info {
    margin-bottom: 10px;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    text-shadow: 0 0 5px #00ff00;
}

.separator {
    margin: 0 10px;
    color: #005500;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    border: 1px solid #00ff00;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8em;
}

.telegram-btn {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    border-color: #0088cc;
}

.telegram-btn:hover {
    background: rgba(0, 136, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.5);
    text-shadow: 0 0 5px #0088cc;
}

.paypal-btn {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: #ffc107;
}

.paypal-btn:hover {
    background: rgba(255, 193, 7, 0.3);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
    text-shadow: 0 0 5px #ffc107;
}

.footer-copy {
    color: #005500;
    font-size: 0.8em;
}

/* Card Component */
.card {
    background: #000000;
    border: 1px solid #00ff00;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    position: relative;
    z-index: 10;
}

/* User Profile Frame */
.user-info-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #000000;
    border: 1px solid #00ff00;
    padding: 10px;
    margin: 15px 10px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.user-info-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 10px #00ff00;
    animation: frame-scan 3s infinite linear;
}

.user-avatar {
    font-size: 1.2em;
    filter: drop-shadow(0 0 5px #00ff00);
    border: 1px dashed #00ff00;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 20, 0, 0.5);
    margin-bottom: 2px;
}

.user-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.user-details .dev-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9em;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    margin-bottom: 3px;
    word-break: break-word;
}

.user-details .badge {
    margin-top: 0;
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.7em;
}

@keyframes frame-scan {
    0% {
        top: -10%;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

.sidebar-header h1 {
    font-weight: 900;
    text-shadow: 0 0 10px #00ff00;
    border-bottom: none;
}