* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #1a1a1a;
    color: #f0e6d3;
    line-height: 1.6;
}

header {
    background-color: #1d1d1d;
    background-image: url(../images/header.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom: 4px solid #c41e2a;
    padding: 20px 0;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c41e2a, #d4842a, #e8a83c, #d4842a, #c41e2a);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    font-size: 28px;
    font-weight: bold;
    color: #f0e6d3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-text h1 {
    font-size: 2.2rem;
    color: #f0e6d3;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-text h1 span {
    color: #e5953b;
}

.logo-text p {
    color: #ffff88;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
nav {
    background: linear-gradient(180deg, #2a2a2a, #1f1f1f);
    border-bottom: 3px solid #3a3a3a;
}

nav ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li a {
    display: block;
    padding: 20px 30px 10px 30px;
    color: #f0e6d3;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    color: #e8a83c;
    background-color: rgba(196, 30, 42, 0.1);
    border-bottom: 3px solid #c41e2a;
}

/* Mobile Navigation */
.nav-mobile {
    background: linear-gradient(180deg, #2a2a2a, #1f1f1f);
    border-bottom: 3px solid #3a3a3a;
}

.nav-mobile ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-mobile ul li a {
    display: block;
    padding: 20px 14px 10px 14px;
    color: #f0e6d3;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-mobile ul li a:hover,
.nav-mobile ul li a.active {
    color: #e8a83c;
    background-color: rgba(196, 30, 42, 0.1);
    border-bottom: 3px solid #c41e2a;
}

/* Main Content - Two Column Layout */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Main Content Column */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    background: linear-gradient(135deg, #2a2a2a, #222222);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.card-header {
    background: linear-gradient(135deg, #c41e2a, #8b1a1a);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f0e6d3;
}

.card-header .icon {
    font-size: 1.4rem;
}

.card-body {
    padding: 25px;
}

.card-body p {
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.8;
}

.card-body a {
    color: #ff9;
}

.page-card {
    background: linear-gradient(135deg, #d3d3d3, #dddddd);
    color: #353535;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-card-body {
    padding: 25px;
}

.page-card-body ul,
.page-card-body ol {
    margin-left: 25px;
}

/* Featured Shows */
.show-list {
    list-style: none;
}

.show-list li {
    padding: 15px 0;
    border-bottom: 1px solid #3a3a3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
}

.show-list li:hover {
    background: rgba(196, 30, 42, 0.1);
}

.show-list li:last-child {
    border-bottom: none;
}

.show-name {
    font-weight: bold;
    color: #f0e6d3;
    font-size: 1.05rem;
}

.show-time {
    color: #e8a83c;
    font-size: 0.9rem;
    font-style: italic;
}

.show-host {
    color: #999;
    font-size: 0.85rem;
}

/* Posts on Home Page */
.article {
    padding: 20px 0;
    border-bottom: 1px solid #3a3a3a;
}

.article:last-child {
    border-bottom: none;
}

.article h4 {
    color: #f0e6d3;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.article h4 a {
    color: #f0e6d3;
    text-decoration: none;
    transition: color 0.3s;
}

.article h4 a:hover {
    color: #e8a83c;
}

.article .article-meta {
    font-size: 0.8rem;
    color: #d52f3b;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
}

.article p {
    color: #999;
    font-size: 0.95rem;
}

.article-icon {
    width: 100px;
    float: left;
    margin: 0 15px 40px 0;
    border-radius: 6px;
}

.article-icon img {
    border-radius: 6px;
}

/* Posts on Categories Page */
.page-card .article {
    border-bottom: 1px solid #3a3a3a;
}

.page-card .article:last-child {
    border-bottom: none;
}

.page-card .article h4 {
    color: #000;
}

.page-card .article h4 a {
    color: #000;
}

.page-card .article h4 a:hover {
    color: #d52f3b;
}

.page-card .article .article-meta {
    color: #d52f3b;
}

.page-card .article p {
    color: #555;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: linear-gradient(135deg, #2a2a2a, #222222);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
}

.sidebar-header {
    background: linear-gradient(135deg, #c37319, #a25a0d);
    padding: 12px 20px;
}

.sidebar-header h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.sidebar-body {
    padding: 20px;
}

.account-menu * {
    color: #eee;
    list-style: none;
}
.sidebox-title {
    background-color: #181818;
    border-radius: 6px;
    padding: 10px 20px;
    margin: 15px 0 5px 0;
    font-weight: bold;
}

/* Banner Ads */
.advertise-with-us {
    background: linear-gradient(135deg, #0d1b2a, #1a2d42);
    border: 2px solid #2a4a6a;
    border-radius: 6px;
    padding: 25px 20px;
    text-align: center;
}

.advertise-with-us h4 {
    color: #e8a83c;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.advertise-with-us p {
    color: #8aafcf;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.advertise-with-us a {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #c37319, #a25a0d);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.advertise-with-us a:hover {
    background: linear-gradient(135deg, #f0c060, #e8a83c);
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Section Divider */
.divider, hr {
    height: 3px;
    background: linear-gradient(90deg, transparent, #c41e2a, #e8a83c, #c41e2a, transparent);
    margin: 10px 0;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #1a1a1a, #111111);
    border-top: 4px solid #c41e2a;
    margin-top: 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c41e2a, #e8a83c, #d4842a, #e8a83c, #c41e2a);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #e8a83c;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-section p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #e8a83c;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 42px;
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom span {
    color: #c41e2a;
}

.showonsm { display: none; }
.span2br { display: inline; }

/* Responsive Design */
@media (max-width: 992px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .logo-section {
        flex-direction: column;
    }
    
    header {
        background-size: cover;
    }
    
    .logo-icon {
        width: 250px;
        height: 250px;
        margin-right: 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li a {
        padding: 10px 20px;
    }

    .show-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .article-icon {
	    margin: 0 15px 10px 0;
	}
	
	.article .article-meta {
		font-size: 0.68rem;
	    text-align: center;
	}
	
	.footer-container {
		text-align: center;
	}

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hideonsm { display: none; }
    .showonsm { display: block; }
    .span2br { display: block; margin: 7px 0; }
    
}

@media (max-width: 480px) {
    .card-body {
        padding: 15px;
    }
}

/*******************/
/*** SEARCH FORM ***/
/*******************/

#form-container { width:100%; margin-bottom:20px; }
#searchinput {
    background:none repeat scroll 0 0 #fafafa;
    border:1px solid #383838;
    border-right:none;
    border-radius:3px 0 0 3px; -webkit-border-radius:3px 0 0 3px; -moz-border-radius:3px 0 0 3px;
    color:#5e5e5e;
    display:block;
    padding:10px;
    width:100%;
    box-sizing:border-box;
    font-size:16px;
    margin:0;
    outline:0;
    height:40px;
}
#searchtext { overflow:hidden; }
button.search-submit-button {
    background:none repeat scroll 0 0 #383838;
    border:1px solid #383838;
    border-left:none;
    border-radius:0 3px 3px 0; -webkit-border-radius:0 3px 3px 0; -moz-border-radius:0 3px 3px 0;
    color:#fff !important;
    text-shadow:1px 1px 2px rgba(0,0,0,.6);
    display:block;
    float:right;
    font-size:20px;
    padding:8px 6px;
    margin:0;
    text-align:center;
    width:50px;
    box-sizing:border-box;
    outline:0;
    height:40px;
    cursor:pointer;
}

/*** PAGE CONTENT BULLETED LISTS ***/

.page ul,
.page ol { 
	list-style-position: outside;
	margin-left:40px;
}

.page ul li,
.page ol li { margin-bottom:15px; }

.page ul ul,
.page ol ul,
.page ol ol,
.page ul ol { 
	margin-left: 20px;
}