/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #b0c4de;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Container Frame */
.site-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px 30px;
    background: rgba(10, 15, 30, 0.65); /* Semi-transparent overlay to keep background visible */
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

/* Header Styling */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    margin-bottom: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-pso {
    color: #ffaa00;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.4);
}

.logo-dot {
    color: #ffffff;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #d0e0f0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.main-nav a.active {
    border-bottom: 2px solid #00f0ff;
    padding-bottom: 4px;
}

/* Search Bar */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(5, 10, 20, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 6px 15px 6px 15px;
    color: #ffffff;
    font-size: 0.85rem;
    width: 180px;
    outline: none;
}

.search-input::placeholder {
    color: #6c7a9c;
}

.search-icon {
    position: absolute;
    right: 12px;
    font-size: 0.8rem;
    cursor: pointer;
}

/* Layout Grid Sections */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-section {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 20px;
}

.hero-window-slot {
    min-height: 420px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Panel Box Styling */
.panel-box {
    background: rgba(12, 18, 35, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 4px;
    overflow: hidden;
}

.panel-title {
    background: rgba(20, 30, 55, 0.8);
    color: #d8e8ff;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.panel-content {
    padding: 12px;
    font-size: 0.85rem;
}

.panel-content ul {
    list-style: none;
}

.panel-content ul li {
    margin-bottom: 6px;
}

.panel-content ul li a {
    color: #8ab4f8;
    text-decoration: none;
}

.panel-content ul li a:hover {
    text-decoration: underline;
}

.stats-content p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 0.8rem;
}

/* Bottom Section */
.bottom-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bottom-panel .panel-content {
    height: 160px;
}

.placeholder-box {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(0, 240, 255, 0.15);
}

/* Footer Styling */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    font-size: 0.75rem;
    color: #6c7a9c;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.footer-right a {
    color: #6c7a9c;
    text-decoration: none;
}

.footer-right a:hover {
    color: #00f0ff;
}
