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

body {
    font-family: 'Orbitron', monospace;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Blood overlay effect */
.blood-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(139, 0, 0, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%),
        url('download.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%),
        url('download-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -4;
    opacity: 0;
    animation: backgroundFade1 20s ease-in-out infinite;
    animation-delay: 0s;
}

.hero .bg-layer-2 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%),
        url('20241228_172418.JPG.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -3;
    opacity: 0;
    animation: backgroundFade2 20s ease-in-out infinite;
    animation-delay: 0s;
}

@keyframes backgroundFade1 {
    0%, 25% {
        opacity: 0;
    }
    33.33%, 58.33% {
        opacity: 1;
    }
    66.67%, 100% {
        opacity: 0;
    }
}

@keyframes backgroundFade2 {
    0%, 58.33% {
        opacity: 0;
    }
    66.67%, 91.67% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.game-title {
    font-family: 'Creepster', cursive;
    font-size: 4rem;
    color: #ff0000;
    text-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff0000,
        2px 2px 4px #000;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.subtitle {
    font-size: 1.5rem;
    color: #ccc;
    text-shadow: 0 0 5px #fff;
    font-weight: 300;
}

@keyframes pulse {
    0%, 100% { text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000, 2px 2px 4px #000; }
    50% { text-shadow: 0 0 15px #ff0000, 0 0 25px #ff0000, 0 0 35px #ff0000, 2px 2px 4px #000; }
}

/* Content Sections */
.content {
    position: relative;
    z-index: 2;
}

.story-section, .players-section, .cta-section {
    padding: 80px 0;
    position: relative;
}

.story-section {
    background: linear-gradient(180deg, #000 0%, #1a0000 100%);
}

.players-section {
    background: linear-gradient(180deg, #1a0000 0%, #000 100%);
}

.cards-section {
    background: linear-gradient(180deg, #000 0%, #1a0000 100%);
    text-align: center;
}

.cta-section {
    background: linear-gradient(180deg, #000 0%, #0a0000 100%);
    text-align: center;
}

.section-title {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    color: #ff0000;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px #ff0000, 2px 2px 4px #000;
}

.story-content {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: #ddd;
}

.story-content strong {
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
}

/* Players Grid */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.player-card {
    background: linear-gradient(145deg, #1a0000, #000);
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.player-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    color: #000;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.2rem;
    box-shadow: 0 0 10px #ff0000;
}

.player-card h3 {
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: #ff0000;
    margin: 1rem 0;
    text-shadow: 0 0 5px #ff0000;
}

.player-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ff0000, #8B0000);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #8B0000, #ff0000);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    transform: scale(1.05);
}

.btn-secondary {
    background: linear-gradient(45deg, #333, #000);
    color: #fff;
    border: 2px solid #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #000, #333);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #000;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #ff0000;
    position: relative;
    z-index: 2;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-content {
        font-size: 1rem;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Navigation Bar */
.navigation {
    background: linear-gradient(90deg, #000 0%, #1a0000 50%, #000 100%);
    border-top: 2px solid #ff0000;
    position: relative;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    margin-top: 2rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 8px 16px;
    border: 2px solid #ff0000;
    border-radius: 5px;
    background: linear-gradient(45deg, #1a0000, #000);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn:hover {
    background: linear-gradient(45deg, #ff0000, #8B0000);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    transform: scale(1.05);
}

.nav-btn.game-entry {
    border-color: #00ff00;
    background: linear-gradient(45deg, #001a00, #000);
}

.nav-btn.game-entry:hover {
    background: linear-gradient(45deg, #00ff00, #008000);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

/* Prize Info */
.prize-info {
    margin-top: 2rem;
    text-align: center;
}

.prize-amount {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
    margin-bottom: 0.5rem;
}

.prize-description {
    font-size: 1.2rem;
    color: #ccc;
    text-shadow: 0 0 5px #fff;
}

/* Blood drip animation */
@keyframes bloodDrip {
    0% { transform: translateY(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.blood-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #ff0000, transparent);
    animation: bloodDrip 4s infinite;
}

.blood-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    right: 15%;
    width: 3px;
    height: 150px;
    background: linear-gradient(to bottom, #8B0000, transparent);
    animation: bloodDrip 6s infinite 2s;
}

/* Card Preview Styles */
.card-preview-content {
    background: linear-gradient(145deg, #1a0000, #000);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.card-preview-content h3 {
    font-family: 'Creepster', cursive;
    color: #ff0000;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #ff0000;
    font-size: 2.5rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.card-image:hover {
    transform: scale(1.05);
}

.card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.card-image img:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .card-preview-content h3 {
        font-size: 2rem;
    }
}

/* Payment Modal Styles */
.payment-content {
    background: linear-gradient(145deg, #1a0000, #000);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.payment-content h3 {
    font-family: 'Creepster', cursive;
    color: #ff0000;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #ff0000;
    font-size: 2rem;
}

.payment-details {
    margin-bottom: 2rem;
}

.price {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    color: #ff0000;
    text-shadow: 0 0 15px #ff0000;
    margin-bottom: 0.5rem;
}

.tax {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #ff6600;
    text-shadow: 0 0 8px #ff6600;
    margin-bottom: 0.5rem;
}

.total {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: #ff0000;
    text-shadow: 0 0 12px #ff0000;
    margin-bottom: 1rem;
    border-top: 1px solid #ff0000;
    padding-top: 0.5rem;
}

.description {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature {
    color: #ddd;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-btn {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 20px;
    border: 2px solid #ff0000;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #1a0000, #000);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-btn:hover {
    background: linear-gradient(45deg, #ff0000, #8B0000);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    transform: scale(1.05);
}

.credit-card {
    border-color: #ff0000;
}

.paypal {
    border-color: #0066cc;
}

.crypto {
    border-color: #ff6600;
}

.finance {
    border-color: #00ff00;
}

@media (max-width: 768px) {
    .payment-content {
        padding: 1.5rem;
    }
    
    .payment-content h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .payment-methods {
        gap: 0.8rem;
    }
    
    .payment-btn {
        font-size: 1rem;
        padding: 12px 16px;
    }
}

/* Financing Modal Styles */
.financing-content {
    background: linear-gradient(145deg, #1a0000, #000);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.financing-content h3 {
    font-family: 'Creepster', cursive;
    color: #00ff00;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #00ff00;
    font-size: 2rem;
}

.financing-details {
    margin-bottom: 2rem;
}

.total-amount {
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    margin-bottom: 0.5rem;
}

.monthly-payment {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ff00;
    text-shadow: 0 0 8px #00ff00;
    margin-bottom: 0.5rem;
}

.interest-rate {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #ff6600;
    text-shadow: 0 0 6px #ff6600;
    margin-bottom: 0.5rem;
}

.term {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.financing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.financing-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.finance-btn {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 20px;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #1a0000, #000);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.finance-btn:hover {
    transform: scale(1.05);
}

.finance-btn.approve {
    border-color: #00ff00;
}

.finance-btn.approve:hover {
    background: linear-gradient(45deg, #00ff00, #008000);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

.finance-btn.reject {
    border-color: #ff0000;
}

.finance-btn.reject:hover {
    background: linear-gradient(45deg, #ff0000, #8B0000);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

/* Entry Limit Styles */
.entry-limit {
    margin-bottom: 2rem;
    text-align: center;
}

.entries-remaining {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #ff0000;
    text-shadow: 0 0 8px #ff0000;
    margin-bottom: 1rem;
}

.entry-progress {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #ff0000;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff0000, #8B0000);
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.payment-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(45deg, #333, #000);
}

.payment-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Registration Form Styles */
.registration-form {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    border-radius: 10px;
}

.registration-form h4 {
    font-family: 'Creepster', cursive;
    color: #ff0000;
    text-shadow: 0 0 8px #ff0000;
    margin-bottom: 1rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-family: 'Orbitron', monospace;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff0000;
    border-radius: 5px;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    border-color: #ff0000;
}

.form-group input::placeholder {
    color: #666;
}

.validation-error {
    color: #ff0000;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
    text-shadow: 0 0 5px #ff0000;
}

.registration-cta {
    text-align: center;
    margin: 2rem 0;
}

.registration-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Secret Admin Button */
.secret-admin-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0.3;
}

.secret-admin-btn:hover {
    opacity: 1;
    background: rgba(255, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    transform: scale(1.1);
}

/* Admin Login Modal */
.admin-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.admin-login-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.admin-login-content h3 {
    font-family: 'Creepster', cursive;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.admin-password-input {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff0000;
    border-radius: 8px;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.admin-password-input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.admin-login-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.admin-login-btn:hover {
    background: linear-gradient(45deg, #cc0000, #990000);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.admin-cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #666;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Admin Dashboard */
.admin-dashboard {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
}

.admin-dashboard-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.admin-dashboard-content h3 {
    font-family: 'Creepster', cursive;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-stat {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.admin-stat-number {
    font-family: 'Creepster', cursive;
    color: #ff0000;
    font-size: 2rem;
    text-shadow: 0 0 10px #ff0000;
}

.admin-stat-label {
    font-family: 'Orbitron', monospace;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.admin-entries-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ff0000;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
}

.admin-entry {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #333;
    font-family: 'Orbitron', monospace;
    color: #fff;
    font-size: 0.9rem;
}

.admin-entry:last-child {
    border-bottom: none;
}

.admin-entry-header {
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
}

.admin-close-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.admin-close-btn:hover {
    background: linear-gradient(45deg, #cc0000, #990000);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}
