/* Main Stylesheet - Dark Mode Only */

:root {
    /* Dark mode colors */
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3a3a3a;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-tertiary: #888888;
    --text-heading: #ffffff;
    --border-color: #444444;
    --border-light: #555555;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.5);
    --success: #2ecc71;
    --error: #e74c3c;
    --warning: #f39c12;
    --warning-bg: #3d2f00;
    --warning-text: #ffd700;
    --link: #6bb6ff;
    --link-hover: #8cc8ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Global link styles */
a {
    color: var(--link) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover) !important;
    text-decoration: underline;
}

a:visited {
    color: var(--link) !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Dark Mode Toggle */
header {
    background: var(--bg-secondary);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header h1 {
    color: var(--text-heading);
    font-size: 2em;
    margin: 0;
    flex: 1;
}

.site-logo {
    max-height: 60px;
    width: auto;
    display: block;
    flex: 1;
}

main {
    flex: 1;
    background: var(--bg-secondary);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

footer {
    margin-top: 20px;
    text-align: center;
    color: var(--text-tertiary);
    padding: 20px;
    font-size: 0.9em;
}

/* Event List */
.event-list h2 {
    margin-bottom: 20px;
    color: var(--text-heading);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.event-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-direction: column;
}

.event-card:hover {
    box-shadow: 0 4px 12px var(--shadow-hover);
    transform: translateY(-2px);
}

.event-poster {
    width: 100%;
    overflow: hidden;
    background: var(--bg-tertiary);
    cursor: pointer;
}

.event-poster a {
    display: block;
    text-decoration: none;
}

.event-poster img {
    transition: opacity 0.3s ease;
}

.event-poster:hover img {
    opacity: 0.9;
}

.event-poster img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.event-card h3 {
    color: var(--text-heading);
    margin: 20px 20px 15px 20px;
    text-align: center;
    font-size: 1.2em;
}

.event-card .btn {
    margin: 0 20px 20px 20px;
    text-align: center;
}

.event-date,
.event-venue {
    margin: 8px 20px 15px 20px;
    color: var(--text-tertiary);
    font-size: 0.9em;
    text-align: center;
}

/* Ticket Selection */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.message.cancelled {
    background: var(--warning-bg);
    border: 1px solid var(--warning);
    color: var(--warning-text);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.message.cancelled h3 {
    margin: 0 0 10px 0;
    color: var(--warning-text);
}

.event-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.event-poster-section {
    position: sticky;
    top: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.event-poster-large {
    width: 100%;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    display: block;
    box-sizing: border-box;
    object-fit: contain;
}

.event-info-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.event-info-section h2 {
    margin-top: 0;
    color: var(--text-heading);
    font-size: 2em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.event-description-formatted {
    margin: 20px 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.event-description-formatted p {
    margin: 1em 0;
    padding: 0;
    min-height: 1.2em;
}

.event-description-formatted p:first-child {
    margin-top: 0;
}

.event-description-formatted p:last-child {
    margin-bottom: 0;
}

.event-description-formatted p:empty {
    margin: 0.5em 0;
    min-height: 0;
}

.event-description-formatted br {
    line-height: 1.8;
}

.event-description-formatted img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    border-radius: 4px;
    margin: 10px 0;
    display: block;
    box-sizing: border-box;
}

.event-description-formatted a {
    color: var(--link);
    text-decoration: underline;
}

.event-description-formatted a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.event-description-formatted h1,
.event-description-formatted h2,
.event-description-formatted h3,
.event-description-formatted h4,
.event-description-formatted h5,
.event-description-formatted h6 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: bold;
}

.event-description-formatted h1:first-child,
.event-description-formatted h2:first-child,
.event-description-formatted h3:first-child,
.event-description-formatted h4:first-child,
.event-description-formatted h5:first-child,
.event-description-formatted h6:first-child {
    margin-top: 0;
}

.event-description-formatted ul,
.event-description-formatted ol {
    margin: 1em 0;
    padding-left: 2em;
}

.event-description-formatted blockquote {
    border-left: 4px solid var(--link);
    padding-left: 1em;
    margin: 1em 0;
    font-style: italic;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
}

.event-description-formatted div {
    margin: 0.5em 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.event-detail {
    margin: 10px 0;
    color: var(--text-tertiary);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.event-detail strong {
    color: var(--text-heading);
}

.ticket-selection {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.ticket-selection h3 {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-light);
    color: var(--text-heading);
    font-size: 1.5em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.ticket-types {
    margin: 30px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.ticket-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 15px;
    background: var(--bg-tertiary);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.ticket-type:hover {
    border-color: var(--border-color);
    box-shadow: 0 2px 8px var(--shadow);
}

.ticket-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
}

.ticket-info h3 {
    margin: 0 0 5px 0;
    color: var(--text-heading);
    font-size: 1.2em;
}

.ticket-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin: 8px 0;
    line-height: 1.5;
}

.ticket-price {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--success);
    margin: 5px 0;
}

.ticket-availability {
    color: var(--text-tertiary);
    font-size: 0.9em;
    margin-top: 5px;
}

.sold-out {
    color: var(--error);
    font-weight: bold;
}

.ticket-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 0;
}

.ticket-quantity label {
    font-weight: 600;
    color: var(--text-primary);
}

.ticket-quantity input,
.ticket-quantity select {
    width: 80px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1em;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ticket-quantity input:focus,
.ticket-quantity select:focus {
    outline: none;
    border-color: var(--link);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.ticket-quantity input:disabled,
.ticket-quantity select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ticket-quantity-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-heading);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--link);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.total-section {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    text-align: right;
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.total-label {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--text-heading);
}

#total-amount {
    color: var(--success);
    font-size: 1.5em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--link);
    color: #ffffff !important;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    font-weight: 600;
    box-sizing: border-box;
}

.btn,
.btn *,
.btn a {
    color: #ffffff !important;
}

.btn:hover {
    background: var(--link-hover);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px var(--shadow);
}

.btn:hover,
.btn:hover *,
.btn:hover a {
    color: #ffffff !important;
}

.btn-primary {
    background: var(--link);
    color: #ffffff !important;
}

.btn-primary:hover {
    background: var(--link-hover);
    color: #ffffff !important;
}

.btn-primary,
.btn-primary *,
.btn-primary a {
    color: #ffffff !important;
}

.btn-secondary {
    background: var(--text-tertiary);
}

.btn-secondary:hover {
    background: var(--text-secondary);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
    width: 100%;
}

.btn:disabled {
    background: var(--text-tertiary);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
}

.success-message h2 {
    color: var(--success);
    margin-bottom: 20px;
}

.order-details {
    background: var(--bg-tertiary);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-light);
}

.order-details p {
    margin: 10px 0;
    color: var(--text-primary);
}

/* Error Messages */
.error {
    color: var(--error);
    padding: 15px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--error);
    border-radius: 4px;
    margin: 15px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 15px;
    }
    
    header {
        padding: 20px;
    }
    
    main {
        padding: 20px;
    }
    
    .event-header {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    img, video, iframe, embed, object {
        max-width: 100% !important;
        height: auto !important;
    }
    
    table {
        max-width: 100% !important;
        table-layout: fixed;
        word-wrap: break-word;
    }
    
    .container {
        padding: 10px;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    header {
        padding: 15px;
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    header h1 {
        font-size: 1.5em;
        word-wrap: break-word;
    }
    
    main {
        padding: 15px;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .event-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    
    .event-poster-section {
        position: static;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .event-poster-large {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 0;
        display: block;
        box-sizing: border-box;
        object-fit: contain;
    }
    
    .event-info-section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        overflow-wrap: break-word;
        word-wrap: break-word;
        box-sizing: border-box;
    }
    
    .event-info-section h2 {
        font-size: 1.5em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .event-description-formatted {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        overflow: hidden;
        overflow-wrap: break-word;
        word-wrap: break-word;
        box-sizing: border-box;
    }
    
    .event-description-formatted * {
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .event-description-formatted img {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        display: block;
    }
    
    .event-description-formatted table {
        max-width: 100% !important;
        width: 100% !important;
        table-layout: fixed;
        word-wrap: break-word;
    }
    
    .event-description-formatted iframe,
    .event-description-formatted video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .ticket-type {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .ticket-quantity {
        width: 100%;
        justify-content: space-between;
    }
    
    .ticket-quantity input,
    .ticket-quantity select {
        width: 100px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .event-card {
        max-width: 100%;
        overflow: hidden;
    }
    
    .event-card h3 {
        font-size: 1.1em;
        margin: 15px;
        word-wrap: break-word;
    }
    
    .event-card .btn {
        margin: 0 15px 15px 15px;
    }
    
    .total-section {
        padding: 15px;
        text-align: center;
        max-width: 100%;
    }
    
    .btn-large {
        padding: 12px 24px;
        width: 100%;
        max-width: 100%;
    }
    
    .ticket-selection h3 {
        font-size: 1.3em;
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .ticket-selection {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    form {
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    img, video, iframe, table {
        max-width: 100% !important;
        height: auto !important;
    }
    
    table {
        table-layout: fixed;
        word-wrap: break-word;
    }
    
    .container {
        padding: 5px;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    header {
        padding: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    header h1 {
        font-size: 1.3em;
    }
    
    main {
        padding: 10px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .event-header {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .event-poster-section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .event-poster-large {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .event-info-section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .event-info-section h2 {
        font-size: 1.3em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .event-description-formatted {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .event-description-formatted * {
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .event-description-formatted img,
    .event-description-formatted video,
    .event-description-formatted iframe {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .event-description-formatted table {
        max-width: 100% !important;
        width: 100% !important;
        table-layout: fixed;
    }
    
    .ticket-info h3 {
        font-size: 1.1em;
        word-wrap: break-word;
    }
    
    .ticket-price {
        font-size: 1.3em;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95em;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
        display: flex !important;
        z-index: 9999;
    }
}

/* Back to Top Button */
/* Language Switcher */
.language-switcher {
    flex-shrink: 0;
    margin-left: 20px;
}

.language-switcher select {
    padding: 8px 12px 8px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23b0b0b0'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.2em;
    padding-right: 2.5em;
}

.language-switcher select:hover {
    border-color: var(--link);
    background-color: var(--bg-secondary);
}

.language-switcher select:focus {
    outline: none;
    border-color: var(--link);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.language-switcher option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 8px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    header h1 {
        width: 100%;
    }
    
    .language-switcher {
        margin-left: 0;
        width: 100%;
        align-self: flex-end;
    }
    
    .language-switcher select {
        width: 100%;
        max-width: 180px;
        margin-left: auto;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--link);
    color: white !important;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--link-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px var(--shadow-hover);
}

.back-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
        display: flex !important;
        z-index: 9999;
    }
}

/* Print Styles */
@media print {
    .back-to-top {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}