Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* ===== Lucid NarutoRP – Sleek Main Page ===== */
/* Outer dark panel */
table.lucid-main-wrapper {
width: 100%;
max-width: 1200px;
margin: 0 auto 40px;
border: 0;
border-collapse: separate;
border-spacing: 0;
background: linear-gradient(160deg, #171a1f, #101215);
color: #f4f4f4;
box-shadow: 0 0 22px rgba(0,0,0,0.7);
border-radius: 14px;
}
table.lucid-main-wrapper td,
table.lucid-main-wrapper th {
border: 0;
}
/* Logo */
.lucid-main-logo {
text-align: center;
font-size: 38px;
letter-spacing: 0.24em;
font-weight: 700;
text-transform: uppercase;
padding: 22px 10px 4px;
}
.lucid-main-logo span {
background: linear-gradient(90deg, #f3f3f3, #d7dde4);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.lucid-main-subtitle {
text-align: center;
font-size: 13px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: #9fb7c9;
padding-bottom: 18px;
opacity: 0.9;
}
/* Section headings */
.lucid-section-heading {
margin: 22px 0 10px;
padding: 0 24px;
}
.lucid-section-heading h2 {
font-size: 15px;
text-transform: uppercase;
letter-spacing: 0.16em;
padding: 8px 14px;
margin: 0;
background: #262d35;
border-radius: 4px;
border-left: 3px solid #4aa3c7;
color: #f5f5f5;
}
/* Icon tables */
table.lucid-main-nav,
table.lucid-factions {
margin: 4px auto 18px;
border: 0;
background: transparent;
}
table.lucid-main-nav td,
table.lucid-factions td {
padding: 18px 24px;
text-align: center;
}
/* Icon wrapper */
.lucid-nav-item {
display: inline-block;
text-align: center;
}
/* Circular icons */
.lucid-nav-item a img,
.lucid-nav-item img {
border-radius: 50%;
border: 2px solid #3f4850;
background: radial-gradient(circle at 30% 20%, #30363d, #181c21);
padding: 12px;
box-sizing: border-box;
box-shadow: 0 8px 16px rgba(0,0,0,0.65);
transition: transform 0.15s ease-out,
box-shadow 0.15s ease-out,
border-color 0.15s ease-out;
}
/* Subtle hover */
.lucid-nav-item a:hover img,
.lucid-nav-item:hover img {
transform: translateY(-3px) scale(1.03);
border-color: #4aa3c7;
box-shadow:
0 10px 20px rgba(0,0,0,0.8),
0 0 12px rgba(74,163,199,0.25);
}
/* Labels */
.lucid-label-strong {
display: inline-block;
margin-top: 8px;
padding: 6px 14px;
background: #e3e6ea;
color: #16181b;
font-size: 12px;
font-weight: 600;
border-radius: 4px;
text-transform: uppercase;
letter-spacing: 0.08em;
}
/* For any softer/secondary labels later */
.lucid-label-soft {
display: inline-block;
margin-top: 6px;
padding: 5px 12px;
background: #d2d7dd;
color: #33373d;
font-size: 11px;
border-radius: 4px;
font-style: italic;
}
/* Responsive tweaks */
@media (max-width: 700px) {
table.lucid-main-nav td,
table.lucid-factions td {
padding: 10px;
}
.lucid-nav-item a img,
.lucid-nav-item img {
width: 120px;
padding: 10px;
}
}