/* HONEYPOT STATISTICS - DARK CYBERPUNK THEME */

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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 100%);
    color: #00ff41;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ff41;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

h1 {
    font-size: 2.5em;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    margin-bottom: 10px;
}

.subtitle {
    color: #888;
    font-size: 1.1em;
}

.last-update {
    margin-top: 15px;
    color: #666;
    font-size: 0.9em;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00ff41;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.5);
}

.stat-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2.5em;
    font-weight: bold;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
}

.stat-label {
    color: #888;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Different colored borders */
.stat-card.total { border-color: #ff006e; }
.stat-card.ssh { border-color: #00ff41; }
.stat-card.http { border-color: #00d4ff; }
.stat-card.ftp { border-color: #ffbe0b; }
.stat-card.ips { border-color: #fb5607; }

/* Data Sections */
.data-section {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00ff41;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

h2 {
    color: #00ff41;
    margin-bottom: 20px;
    font-size: 1.8em;
    text-shadow: 0 0 5px #00ff41;
}

/* Tables */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #333;
}

th {
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
    font-weight: bold;
}

td {
    color: #ccc;
}

tr:hover {
    background: rgba(0, 255, 65, 0.05);
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Activity Feed */
.activity-feed {
    max-height: 400px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 15px;
}

.activity-item {
    padding: 10px;
    margin-bottom: 10px;
    background: rgba(0, 255, 65, 0.05);
    border-left: 3px solid #00ff41;
    border-radius: 3px;
}

.activity-service {
    display: inline-block;
    padding: 2px 8px;
    background: #00ff41;
    color: #000;
    border-radius: 3px;
    font-weight: bold;
    font-size: 0.8em;
    margin-right: 10px;
}

.activity-ssh { background: #00ff41; }
.activity-http { background: #00d4ff; }
.activity-ftp { background: #ffbe0b; }

/* About Section */
.about-section {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #666;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.about-section p {
    color: #ccc;
    margin-bottom: 15px;
}

.about-section ul {
    list-style: none;
    padding-left: 20px;
}

.about-section li {
    color: #ccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-section li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00ff41;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    color: #666;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 1.8em;
    }
}

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

::-webkit-scrollbar-track {
    background: #0a0e27;
}

::-webkit-scrollbar-thumb {
    background: #00ff41;
    border-radius: 5px;
}

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