/* Charcoal Theme - dmwingames.org */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
}

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

/* Header */
.header {
    background: rgba(45, 45, 45, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #404040;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #00D9FF;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00D9FF;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    color: #e0e0e0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00D9FF;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bonus-highlight {
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin: 2rem auto;
    display: inline-block;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.bonus-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00D9FF;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #00D9FF 0%, #00B8D4 100%);
    color: #1a1a1a;
}

.btn-secondary {
    background: rgba(0, 217, 255, 0.2);
    color: #00D9FF;
    border: 2px solid #00D9FF;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
}

/* Info Section */
.info-section {
    background: #2C2C2C;
    padding: 4rem 0;
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00D9FF;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #00D9FF 0%, #00B8D4 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #404040;
}

.info-table tr {
    border-bottom: 1px solid #404040;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    color: #e0e0e0;
}

.info-table td:first-child {
    background: #1a1a1a;
    width: 40%;
    color: #00D9FF;
    font-weight: 500;
}

.info-table td:last-child {
    color: #00D9FF;
    font-weight: 500;
}

/* Features Grid */
.features {
    padding: 4rem 0;
    color: #e0e0e0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #404040;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00D9FF;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00D9FF;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Admin Panel Styles */
.admin-container {
    min-height: 100vh;
}

.admin-header {
    background: rgba(45, 45, 45, 0.95);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 217, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #404040;
}

.admin-header h1 {
    color: #00D9FF;
}

.btn-logout {
    background: #00D9FF;
    color: #1a1a1a;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-logout:hover {
    background: #00B8D4;
}

.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem;
}

.login-box {
    background: #2C2C2C;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    border: 1px solid #404040;
}

.login-box h2 {
    text-align: center;
    color: #00D9FF;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #b0b0b0;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #404040;
    border-radius: 5px;
    font-size: 1rem;
    background: #1a1a1a;
    color: #e0e0e0;
}

.form-group input:focus {
    outline: none;
    border-color: #00D9FF;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #00D9FF 0%, #00B8D4 100%);
    color: #1a1a1a;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.stat-card {
    background: #2C2C2C;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #404040;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00D9FF;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
