/* 2000s Retro Portal Style (Early Web Aesthetic) */
@import url('https://fonts.googleapis.com/css2?family=Verdana&family=Tahoma&display=swap');

:root {
    /* 2000s Web Colors */
    --portal-blue: #003399;
    --portal-header: linear-gradient(to bottom, #4f81bd 0%, #2f5496 100%);
    --portal-bg: #ececec;
    --portal-box-bg: #ffffff;
    --portal-accent: #ff9933; /* Classic Orange Portal Highlight */
    --portal-border: #99abb9;
    --portal-text: #000000;
    --portal-link: #0033cc;
    
    /* Glossy Effect */
    --glossy-overlay: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.05) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--portal-bg);
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--portal-text);
    font-family: 'Verdana', 'Tahoma', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

a {
    text-decoration: underline;
    color: var(--portal-link);
}

a:hover {
    color: var(--portal-accent);
    text-decoration: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    min-height: 100vh;
}

/* Header - Glossy 2000s Banner */
.site-header {
    background: var(--portal-header);
    padding: 20px;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--portal-accent);
}

.site-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: rgba(255,255,255,0.15);
}

.site-title {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    font-family: 'Tahoma', sans-serif;
    margin-bottom: 15px;
}

/* 2000s Horizontal Menu */
.site-nav {
    display: flex;
    justify-content: center;
    gap: 2px;
    background: rgba(0,0,0,0.2);
    padding: 2px;
    border: 1px solid rgba(255,255,255,0.2);
}

.nav-link {
    background: var(--portal-header);
    color: #fff !important;
    padding: 5px 20px;
    font-weight: bold;
    text-decoration: none;
    font-size: 11px;
    border: 1px solid #1a3a66;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: rgba(255,255,255,0.1);
}

.nav-link:hover {
    background: var(--portal-accent);
    border-color: #cc7a00;
}

/* Compliance Bar */
.compliance-bar {
    background: #f9f9f9;
    border-bottom: 1px solid var(--portal-border);
    padding: 15px;
    font-size: 11px;
    color: #666;
    text-align: center;
}

.trade-link {
    display: inline-block;
    padding: 2px 8px;
    background: var(--portal-accent);
    color: #fff !important;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #cc7a00;
    margin-top: 5px;
}

/* Portal Grid - Table Look but Div Based */
.portal-grid {
    padding: 20px;
}

.model-row {
    display: flex;
    background: #fff;
    border: 1px solid var(--portal-border);
    margin-bottom: 10px;
    padding: 10px;
    align-items: center;
}

.model-row:nth-child(even) {
    background: #f4f7fa;
}

.model-avatar {
    width: 60px;
    height: 90px;
    border: 3px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    margin-right: 15px;
    overflow: hidden;
}

.model-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-info {
    flex-grow: 1;
}

.model-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--portal-blue);
    margin-bottom: 5px;
}

/* Buttons Room - Classic Glossy Rectangles */
.action-group {
    display: flex;
    gap: 8px;
}

.btn-2000 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--portal-header);
    color: #fff !important;
    padding: 5px 12px;
    border: 1px solid #1a3a66;
    font-weight: bold;
    font-size: 11px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 60px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

.btn-2000::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: rgba(255,255,255,0.2);
}

.btn-2000:hover {
    background: var(--portal-accent);
    border-color: #cc7a00;
}

.btn-2000 img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    filter: brightness(0) invert(1);
}

/* Tag Cloud - Classic Sidebar/Footer link list */
.tag-section {
    padding: 20px;
    background: #f1f1f1;
    border-top: 2px solid #ccc;
    margin-top: 30px;
}

.tag-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    font-size: 12px;
    color: #0033cc;
    background: #fff;
    padding: 3px 8px;
    border: 1px solid #ccc;
}

.tag-cloud a:hover {
    background: var(--portal-accent);
    color: #fff;
    border-color: var(--portal-accent);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 11px;
    color: #777;
    background: #e1e1e1;
    border-top: 1px solid #ccc;
}