
body { margin: 0; font-family: 'Roboto', sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }
.split-screen { display: flex; height: 100vh; flex-wrap: wrap; }
.left-pane, .right-pane { width: 50%; padding: 20px; box-sizing: border-box; transition: transform 0.3s ease; }
.left-pane { background: linear-gradient(135deg, #2c2e43, #1f1c2c); color: #fff; }
.right-pane { background: #ffffff; }
@media (max-width: 768px) { .left-pane, .right-pane { width: 100%; height: auto; } }
.navbar { position: fixed; top: 0; width: 100%; background: rgba(31, 28, 44, 0.9); color: #fff; z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); }
.navbar ul { list-style: none; padding: 0; margin: 0; display: flex; }
.navbar li { margin-right: 20px; cursor: pointer; transition: color 0.3s ease; }
.navbar li:hover { color: #4a90e2; }
.cloud-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; animation: float 10s infinite ease-in-out; pointer-events: none; }
@keyframes float { 0% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.02); } 100% { transform: translateY(0) scale(1); } }
h1, h2, h3 { font-family: 'Roboto Condensed', sans-serif; font-weight: bold; }
h1 { font-size: 2.5rem; text-align: center; margin-top: 80px; position: relative; }
h1::after { content: ''; display: block; width: 50px; height: 3px; background: #4a90e2; margin: 10px auto; }
h2 { font-size: 2rem; margin-bottom: 20px; }
p { font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
pre { background: #f4f4f4; padding: 15px; border-radius: 5px; overflow-x: auto; font-size: 0.9rem; }
button { background: #4a90e2; color: #fff; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; }
button:hover { background: #3a7bd5; transform: scale(1.05); }
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 20px; }
.grid-item { background: #fff; padding: 15px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; }
.grid-item:hover { transform: translateY(-5px); box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); }
.grid-item img { width: 100%; height: auto; border-radius: 10px; margin-bottom: 10px; }
.footer { background: #2c2e43; color: #fff; text-align: center; padding: 20px; margin-top: 50px; }
.tooltip { position: relative; display: inline-block; cursor: pointer; }
.tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 5px; padding: 5px; position: absolute; z-index: 1; bottom: 125%; left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity 0.3s; }
.tooltip:hover .tooltiptext { visibility: visible; opacity: 1; }
.breadcrumbs { padding: 10px; background: #f4f4f4; margin-bottom: 20px; border-radius: 5px; }
.breadcrumbs span { margin: 0 5px; }
.breadcrumbs span:not(:last-child)::after { content: '>'; margin-left: 5px; color: #ccc; }
.chart-container { width: 100%; max-width: 600px; margin: 0 auto; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 1s ease-in-out; }

