/* ZCCtest.com - Brutalist Dark Mode Styles */

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

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.4;
}

/* Dark/Light Mode Toggle Button */
.mode-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.mode-btn {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #000000;
    border: 3px solid #ffffff;
    padding: 0;
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mode-btn:hover {
    background: #0e72ed;
    color: #ffffff;
    border-color: #0e72ed;
    transform: rotate(180deg);
}

body.light-mode .mode-btn {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

body.light-mode .mode-btn:hover {
    background: #0e72ed;
    border-color: #0e72ed;
}

/* Light Mode Override */
body.light-mode {
    background: #ffffff;
    color: #000000;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
header {
    border-bottom: 4px solid #ffffff;
    padding: 2rem 3rem;
    background: #0a0a0a;
}

body.light-mode header {
    border-bottom-color: #000000;
    background: #ffffff;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: #0e72ed;
}

.tagline {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    color: #ffffff;
}

body.light-mode .tagline {
    color: #000000;
}

/* Status Bar */
.status-bar {
    padding: 1rem 3rem;
    background: #0e72ed;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 4px solid #ffffff;
}

body.light-mode .status-bar {
    border-bottom-color: #000000;
}

/* Hero Section */
.hero {
    padding: 4rem 3rem;
    border-bottom: 4px solid #ffffff;
    background: #0e72ed;
    color: #ffffff;
}

body.light-mode .hero {
    border-bottom-color: #000000;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.hero p {
    font-size: 1.125rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Grid Section */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 4px solid #ffffff;
}

body.light-mode .grid {
    border-bottom-color: #000000;
}

.grid-item {
    border-right: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    padding: 2.5rem;
    background: #0a0a0a;
    color: #ffffff;
    transition: all 0.2s ease;
}

body.light-mode .grid-item {
    border-right-color: #000000;
    border-bottom-color: #000000;
    background: #ffffff;
    color: #000000;
}

.grid-item:nth-child(3n) {
    border-right: none;
}

.grid-item:hover {
    background: #ffffff;
    color: #0a0a0a;
    cursor: pointer;
}

body.light-mode .grid-item:hover {
    background: #0a0a0a;
    color: #ffffff;
}

.grid-item h3 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.grid-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.grid-item .number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.grid-item:hover .number {
    opacity: 0.5;
}

/* Info Section */
.info-section {
    padding: 3rem;
    border-bottom: 4px solid #ffffff;
    background: #141414;
}

body.light-mode .info-section {
    border-bottom-color: #000000;
    background: #f8f9fa;
}

.info-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    color: #0e72ed;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.info-block {
    padding: 2rem;
    border: 4px solid #ffffff;
    background: #0a0a0a;
}

body.light-mode .info-block {
    border-color: #000000;
    background: #ffffff;
}

.info-block h3 {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #0e72ed;
}

.info-block ul {
    list-style: none;
    font-size: 0.9rem;
}

.info-block li {
    padding: 0.5rem 0;
    border-bottom: 2px solid #ffffff;
}

body.light-mode .info-block li {
    border-bottom-color: #000000;
}

.info-block li:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    padding: 2rem 3rem;
    background: #ffffff;
    color: #0a0a0a;
    text-align: center;
    font-size: 0.875rem;
}

body.light-mode footer {
    background: #000000;
    color: #ffffff;
}

/* Dark mode specific enhancements */
body:not(.light-mode) .grid-item {
    box-shadow: inset 0 0 0 1px rgba(14, 114, 237, 0.1);
}

body:not(.light-mode) .info-section {
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .grid-item {
        border-right: none;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .mode-switcher {
        position: fixed;
        top: 20px;
        right: 20px;
    }

    .mode-btn {
        width: 50px;
        height: 50px;
    }
}
