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

body {
    font-family: 'Courier New', monospace;
    background: #303948;
    color: #FFFFFF;
    overflow: hidden;
    height: 100vh;
}

.matrix-container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#matrixCanvas {
    width: 100%;
    height: 100%;
}

.terminal-window {
    width: 100%;
    max-width: 1200px;
    height: 90vh;
    background: rgba(48, 57, 72, 0.95);
    border: 2px solid #3cbef2;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(60, 190, 242, 0.3);
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #303948;
    padding: 10px 15px;
    border-bottom: 1px solid #3cbef2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control.close { background: #ff5f57; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }

.terminal-title {
    color: #3cbef2;
    font-weight: bold;
    font-size: 14px;
}

.terminal-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.command-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3cbef2;
    font-size: 14px;
}

.prompt {
    color: #28ca42;
}

.output-container {
    flex: 1;
    border: 1px solid #3cbef2;
    padding: 20px;
    position: relative;
    overflow-y: auto;
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 165px;
    height: 60px;
    filter: drop-shadow(0 0 10px #3cbef2);
}

.hex-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.hex-row {
    display: flex;
    gap: 15px;
}

.hexagon {
    width: 120px;
    height: 138px;
    background: #303948;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #3cbef2;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon:hover {
    background: #3cbef2;
    transform: scale(1.05);
}

.hexagon.main-hex {
    width: 150px;
    height: 173px;
    background: rgba(60, 190, 242, 0.1);
}

.hex-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.hex-title {
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
    display: block;
}

.hex-subtitle {
    font-size: 10px;
    color: #3cbef2;
    display: block;
    margin-top: 5px;
}

.content-display {
    margin-top: 30px;
    min-height: 200px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scanning-animation {
    position: relative;
    text-align: center;
    padding: 40px 0;
}

.scan-line {
    width: 100%;
    height: 2px;
    background: #3cbef2;
    position: absolute;
    top: 50%;
    animation: scan 2s linear infinite;
    box-shadow: 0 0 10px #3cbef2;
}

@keyframes scan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

.scan-text {
    color: #3cbef2;
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.access-warning {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid #ffa500;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
    color: #ffa500;
}

.warning-icon {
    margin-right: 8px;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mirror-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(60, 190, 242, 0.1);
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

.link-address {
    color: #FFFFFF;
    font-family: monospace;
    word-break: break-all;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28ca42;
}

.status-indicator.online {
    background: #28ca42;
}

.access-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(60, 190, 242, 0.05);
    border-left: 3px solid #3cbef2;
}

.access-info p {
    margin: 5px 0;
    font-size: 14px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.data-point {
    text-align: center;
    padding: 15px;
    background: rgba(60, 190, 242, 0.1);
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

.data-label {
    display: block;
    font-size: 11px;
    color: #3cbef2;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.data-value {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
}

.market-structure {
    margin: 25px 0;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.structure-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid #3cbef2;
}

.param-name {
    color: #FFFFFF;
    font-size: 13px;
}

.param-value {
    color: #3cbef2;
    font-weight: bold;
    font-size: 13px;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.category-tag {
    background: rgba(60, 190, 242, 0.2);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    color: #FFFFFF;
    border: 1px solid #3cbef2;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.security-tier {
    padding: 15px;
    background: rgba(60, 190, 242, 0.05);
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

.security-tier h4 {
    color: #3cbef2;
    margin-bottom: 10px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 5px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(60, 190, 242, 0.2);
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.feature-list li:before {
    content: "■";
    color: #3cbef2;
    position: absolute;
    left: 0;
    font-size: 12px;
}

.restrictions {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff4444;
    border-radius: 4px;
}

.restrictions h4 {
    color: #ff4444;
    margin-bottom: 10px;
}

.restrictions p {
    margin: 5px 0;
    font-size: 13px;
    line-height: 1.4;
}

.feature-category {
    margin-bottom: 25px;
}

.feature-category h4 {
    color: #3cbef2;
    margin-bottom: 10px;
    border-left: 3px solid #3cbef2;
    padding-left: 10px;
}

.tier-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.tier {
    padding: 12px;
    background: rgba(60, 190, 242, 0.1);
    border: 1px solid #3cbef2;
    border-radius: 4px;
    text-align: center;
}

.tier-name {
    display: block;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.tier-desc {
    display: block;
    font-size: 12px;
    color: #3cbef2;
}

.rating-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.rating-category {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-name {
    width: 150px;
    color: #3cbef2;
    font-size: 14px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #3cbef2;
    transition: width 1s ease;
}

.rating-score {
    width: 60px;
    text-align: right;
    color: #FFFFFF;
    font-weight: bold;
}

.detailed-metrics {
    margin-top: 30px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.metric {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(60, 190, 242, 0.1);
    border: 1px solid #3cbef2;
    border-radius: 4px;
}

.metric-label {
    color: #FFFFFF;
    font-size: 13px;
}

.metric-value {
    color: #3cbef2;
    font-weight: bold;
}

.assessment-section {
    margin-bottom: 20px;
}

.assessment-section h4 {
    color: #3cbef2;
    margin-bottom: 10px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 5px;
}

.verdict-text p {
    margin: 10px 0;
    line-height: 1.6;
    font-size: 14px;
}

.final-score {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(60, 190, 242, 0.1);
    border: 2px solid #3cbef2;
    border-radius: 8px;
}

.score {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #3cbef2;
}

.score-label {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    margin-top: 5px;
}

.score-description {
    display: block;
    font-size: 16px;
    color: #28ca42;
    margin-top: 10px;
    font-weight: bold;
}

.terminal-footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #3cbef2;
    color: #3cbef2;
    font-size: 12px;
}

.status-line {
    color: #28ca42;
}

h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 5px;
    font-size: 18px;
}

h4 {
    color: #3cbef2;
    margin: 15px 0 10px 0;
    font-size: 15px;
}

.terminal-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(48, 57, 72, 0.98);
}

.output-container {
    flex: 1;
    border: 1px solid #3cbef2;
    padding: 25px;
    position: relative;
    overflow-y: auto;
    background: rgba(30, 35, 42, 0.95);
}

.content-display {
    margin-top: 30px;
    min-height: 400px;
    line-height: 1.6;
}

h1 {
    color: #3cbef2;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #3cbef2;
    padding-bottom: 10px;
    font-weight: bold;
}

h2 {
    color: #3cbef2;
    font-size: 18px;
    margin: 25px 0 15px 0;
    padding-left: 15px;
    border-left: 3px solid #3cbef2;
}

h3 {
    color: #3cbef2;
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 8px;
}

h4 {
    color: #3cbef2;
    font-size: 16px;
    margin: 20px 0 12px 0;
    font-weight: bold;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.data-point {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(60, 190, 242, 0.15), rgba(60, 190, 242, 0.05));
    border: 1px solid #3cbef2;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.data-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(60, 190, 242, 0.2);
}

.data-label {
    display: block;
    font-size: 12px;
    color: #3cbef2;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.data-value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
}

.market-structure {
    margin: 30px 0;
    padding: 20px;
    background: rgba(60, 190, 242, 0.05);
    border: 1px solid #3cbef2;
    border-radius: 6px;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.structure-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #3cbef2;
    transition: background 0.3s ease;
}

.structure-item:hover {
    background: rgba(60, 190, 242, 0.1);
}

.param-name {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.param-value {
    color: #3cbef2;
    font-weight: bold;
    font-size: 14px;
}

.operational-info {
    margin: 30px 0;
    padding: 25px;
    background: rgba(60, 190, 242, 0.03);
    border: 1px solid rgba(60, 190, 242, 0.3);
    border-radius: 6px;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 20px 0;
}

.category-tag {
    background: linear-gradient(135deg, rgba(60, 190, 242, 0.2), rgba(60, 190, 242, 0.1));
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #FFFFFF;
    border: 1px solid #3cbef2;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: rgba(60, 190, 242, 0.3);
    transform: scale(1.05);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.security-tier {
    padding: 25px;
    background: linear-gradient(135deg, rgba(60, 190, 242, 0.08), rgba(60, 190, 242, 0.02));
    border: 1px solid #3cbef2;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.security-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(60, 190, 242, 0.15);
}

.security-tier h2 {
    border-left: 4px solid #3cbef2;
    padding-left: 12px;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 15px 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(60, 190, 242, 0.2);
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    line-height: 1.5;
}

.feature-list li:before {
    content: "▸";
    color: #3cbef2;
    position: absolute;
    left: 0;
    font-size: 16px;
    font-weight: bold;
}

.restrictions {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(255, 68, 68, 0.05));
    border: 1px solid #ff4444;
    border-radius: 6px;
}

.restrictions h2 {
    color: #ff4444;
    border-left: 4px solid #ff4444;
    padding-left: 12px;
}

.restrictions p {
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #ffa07a;
}

.feature-category {
    margin-bottom: 35px;
    padding: 20px;
    background: rgba(60, 190, 242, 0.03);
    border: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 6px;
}

.feature-category h2 {
    border-left: 4px solid #3cbef2;
    padding-left: 12px;
    margin-bottom: 20px;
}

.tier-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.tier {
    padding: 20px;
    background: linear-gradient(135deg, rgba(60, 190, 242, 0.1), rgba(60, 190, 242, 0.05));
    border: 1px solid #3cbef2;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tier:hover {
    transform: scale(1.03);
}

.tier-name {
    display: block;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-size: 16px;
}

.tier-desc {
    display: block;
    font-size: 13px;
    color: #3cbef2;
    line-height: 1.4;
}

.rating-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.rating-category {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(60, 190, 242, 0.05);
    border-radius: 6px;
}

.category-name {
    width: 180px;
    color: #3cbef2;
    font-size: 14px;
    font-weight: 500;
}

.rating-bar {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #3cbef2, #2a8fd6);
    border-radius: 6px;
    transition: width 1.5s ease-in-out;
    position: relative;
}

.rating-fill:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.rating-score {
    width: 70px;
    text-align: right;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 16px;
}

.detailed-metrics {
    margin-top: 40px;
    padding: 25px;
    background: rgba(60, 190, 242, 0.05);
    border: 1px solid #3cbef2;
    border-radius: 8px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(60, 190, 242, 0.3);
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.metric:hover {
    transform: translateY(-3px);
    background: rgba(60, 190, 242, 0.1);
}

.metric-label {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.metric-value {
    color: #3cbef2;
    font-weight: bold;
    font-size: 16px;
}

.assessment-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(60, 190, 242, 0.03);
    border: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 6px;
}

.assessment-section h2 {
    border-left: 4px solid #3cbef2;
    padding-left: 12px;
    margin-bottom: 15px;
}

.verdict-text p {
    margin: 15px 0;
    line-height: 1.7;
    font-size: 15px;
    text-align: justify;
}

.final-score {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(60, 190, 242, 0.15), rgba(60, 190, 242, 0.05));
    border: 2px solid #3cbef2;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.final-score:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(60, 190, 242, 0.3), transparent 30%);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.score {
    display: block;
    font-size: 52px;
    font-weight: bold;
    color: #3cbef2;
    position: relative;
    z-index: 2;
}

.score-label {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

.score-description {
    display: block;
    font-size: 18px;
    color: #28ca42;
    margin-top: 12px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.access-warning {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 165, 0, 0.05));
    border: 1px solid #ffa500;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    color: #ffa500;
    border-radius: 6px;
    font-weight: bold;
}

.warning-icon {
    margin-right: 10px;
    font-size: 18px;
}

.access-info {
    margin-top: 25px;
    padding: 20px;
    background: rgba(60, 190, 242, 0.08);
    border-left: 4px solid #3cbef2;
    border-radius: 0 6px 6px 0;
}

.access-info h2 {
    margin-top: 0;
    border: none;
    padding-left: 0;
}

.access-info p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
}

.mirror-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(60, 190, 242, 0.12), rgba(60, 190, 242, 0.06));
    border: 1px solid #3cbef2;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    background: rgba(60, 190, 242, 0.2);
    transform: translateX(5px);
}

.link-address {
    color: #FFFFFF;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    font-size: 14px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #28ca42;
    box-shadow: 0 0 10px #28ca42;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.terminal-footer {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #3cbef2;
    color: #3cbef2;
    font-size: 12px;
    text-align: center;
}

.status-line {
    color: #28ca42;
    font-weight: bold;
}

.output-container::-webkit-scrollbar {
    width: 8px;
}

.output-container::-webkit-scrollbar-track {
    background: rgba(60, 190, 242, 0.1);
    border-radius: 4px;
}

.output-container::-webkit-scrollbar-thumb {
    background: #3cbef2;
    border-radius: 4px;
}

.output-container::-webkit-scrollbar-thumb:hover {
    background: #2a8fd6;
}

@media (max-width: 768px) {
    .hex-grid {
        transform: scale(0.8);
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-name {
        width: 100%;
    }
    
    .rating-bar {
        width: 100%;
    }
}

.webmaster-resources {
    background: rgba(48, 57, 72, 0.7);
    border: 1px solid #3cbef2;
    border-radius: 4px;
    padding: 20px;
    margin: 30px 0;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.webmaster-resources:hover {
    opacity: 1;
}

.resources-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 10px;
}

.resources-header h3 {
    color: #3cbef2;
    font-size: 16px;
    margin-bottom: 5px;
}

.resources-header p {
    color: #FFFFFF;
    font-size: 12px;
    opacity: 0.8;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.resource-category h4 {
    color: #3cbef2;
    font-size: 14px;
    margin-bottom: 10px;
    border-left: 2px solid #3cbef2;
    padding-left: 8px;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resource-links a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 6px 10px;
    background: rgba(60, 190, 242, 0.1);
    border-radius: 3px;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.resource-links a:hover {
    background: rgba(60, 190, 242, 0.2);
    border-color: #3cbef2;
    transform: translateX(5px);
}

.footer-resources {
    margin-top: 40px;
    padding: 15px;
    background: rgba(48, 57, 72, 0.5);
    border-top: 1px solid #3cbef2;
    border-bottom: 1px solid #3cbef2;
}

.footer-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
}

.footer-title {
    color: #3cbef2;
    font-weight: bold;
    margin-right: 10px;
}

.footer-resources a {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    padding: 4px 8px;
    border-radius: 3px;
}

.footer-resources a:hover {
    opacity: 1;
    background: rgba(60, 190, 242, 0.1);
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .resource-links a {
        font-size: 11px;
    }
}

.webmaster-resources .resource-links a::before {
    content: "▸";
    color: #3cbef2;
    margin-right: 8px;
    font-size: 10px;
}

.footer-resources a::after {
    content: "•";
    color: #3cbef2;
    margin-left: 10px;
}

.footer-resources a:last-child::after {
    content: "";
}