/* DeTodoUIS - Shared Styles */

/* CSS Variables - Dark Theme (Default) */
:root {
    --bg: #121212;
    --surface: #1e1e1e;
    --surface-2: #2a2a2a;
    --text: #e0e0e0;
    --text-muted: #a0a0a0;
    --border: #3a3a3a;
    --link: #8ab4f8;
    --link-hover: #aecbfa;
    --accent: #f5c400;
}

/* CSS Variables - Light Theme Override */
html[data-theme="light"] {
    --bg: #ffffff;
    --surface: #f5f5f5;
    --surface-2: #ebebeb;
    --text: #111111;
    --text-muted: #444444;
    --border: #dddddd;
    --link: #1a4dd6;
    --link-hover: #163fb2;
    --accent: #f5c400;
}

/* Base Styles */
body {
    font-family: 'Fragment Mono', monospace;
    text-align: center;
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, p {
    color: var(--text);
}

a {
    color: var(--link);
}

a:hover {
    color: var(--link-hover);
}

strong {
    color: var(--text);
}

/* Buttons */
.button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text);
    background-color: var(--surface);
    border: 2px solid var(--border);
    border-radius: 5px;
    transition: background-color 0.2s, border-color 0.2s;
}

.button:hover {
    background-color: var(--surface-2);
    border-color: var(--text-muted);
    color: var(--text);
}

/* Logo */
.logo-circle {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 44px;
    height: auto;
    margin-bottom: 0;
    background: none;
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
    display: block;
}

/* Layout */
.row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.section {
    max-width: 600px;
    text-align: left;
    margin-top: 20px;
    padding: 20px;
    border-top: 2px solid var(--border);
}

.section ul, .section ol {
    padding-left: 20px;
}

/* Tropelorio - Yellow Circle */
.section::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-color: var(--accent);
    background-image: url("tropelorio.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    border-radius: 50%;
}

/* Lists */
ul {
    list-style: none;
}

ul li::before {
    content: "- ";
}

/* Footer Section */
.footer-section::before {
    display: none;
}

.tropelorio-link {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-color: var(--accent);
    background-image: url("tropelorio.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    border-radius: 50%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tropelorio-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(245, 196, 0, 0.4);
}
