    /* General Reset */
body {
    background-color: #e0e0e0;
    font-family: Arial, sans-serif;
    font-size: 12px;
    margin: 0;
    color: #333;
}

.container {
    width: 900px;
    margin: 0 auto;
}

/* Header & Nav */
.top-bar {
    background: #37caff;
    color: white;
    padding: 5px 0;
    text-align: right; 
}

header {
    background:linear-gradient(#37caff , #2a008b) ;
    padding-bottom: 10px;
    border-bottom: 4px solid #333;
}

.logo {
    color: white;
    font-size: 42px;
    margin: 0;
    font-weight: bold;
    letter-spacing: -2px;
}

.logo span {
    font-size: 12px;
    vertical-align: top;
    background: #555;
    padding: 2px 4px;
}

.main-nav {
    margin-top: 10px;
}

.main-nav a {
    background: #ddd;
    color: #333;
    padding: 6px 12px;
    text-decoration: none;
    margin-right: 5px;
    border-radius: 4px 4px 0 0;
    font-weight: bold;
}

.main-nav a.active {
    background: white;
}

/* Layout Blocks */
.hero-flex {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.featured-box {
    flex: 2;
    background: white;
    border: 1px solid #999;
}

.box-header {
    background: #444;
    color: white;
    padding: 8px;
    font-weight: bold;
}

.featured-content {
    display: flex;
    padding: 15px;
    background: #f9f9f9;
}

.featured-thumb {
    width: 250px;
    height: 150px;
    background: #ccc;
    margin-right: 15px;
}
/*THIS IS THE DIV FOR THE iSN(the computer)*/
.promo-box {
    flex: 1;
    background: #e0e0e0;
    color: white;
    padding: 2px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-inner {
    border: 2px solid #555;
    width: 100%;
    max-width: 380px;
    position: relative;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.isn {
    width: 100%;
    display: block;
}

.parry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    pointer-events: none; 
   
}

/* Typography & Lists */
.three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.item-row {
    display: flex;
    margin-bottom: 15px;
    gap: 10px;
}

.small-thumb {
    width: 60px;
    height: 45px;
    background: #333;
    flex-shrink: 0;
}

.tag-cloud {
    line-height: 2;
    color: #555;
}

.bottom-flex {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.categories { flex: 2; }
.news-section { flex: 1; border-left: 1px dotted #999; padding-left: 20px; }

footer {
    border-top: 1px solid #ccc;
    padding: 20px 0;
    text-align: center;
    color: #666;
} 