/* Unique Design for Site 3: torzn.info - Matrix Green Theme */
body {
    font-family: 'Courier New', monospace;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background: #000;
    color: #00ff00;
}
.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
    padding: 0 10px;
}
header {
    background: #001a00;
    color: #00ff00;
    padding-top: 20px;
    min-height: 75px;
    border-bottom: #00ff00 3px solid;
}
header a {
    color: #00ff00;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}
header .logo {
    float: left;
    font-size: 28px;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}
header nav {
    float: right;
    margin-top: 15px;
}
header li {
    float: left;
    display: inline;
    padding: 0 15px;
}
main {
    padding: 30px 0;
}
.top-banner {
    width: 100%;
    margin-bottom: 30px;
}
.banner-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid #00ff00;
}
.feature-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #001a00;
    padding: 30px;
    border: 2px solid #00ff00;
    margin-top: 30px;
}
.feature-content {
    flex: 1;
}
.feature-img {
    width: 250px;
    height: auto;
    border: 2px solid #00ff00;
}
.hero {
    background: #001a00;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 0;
    border: 2px solid #00ff00;
}
.hero h1 {
    font-size: 32px;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}
section {
    background: #001a00;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 0;
    border: 1px solid #00ff00;
}
h2 {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.article-card {
    background: #000;
    padding: 20px;
    border: 2px solid #00ff00;
    border-radius: 0;
}
.article-card a {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
}
.tech-resource {
    background: #001a00;
    border: 2px solid #00ff00;
    padding: 20px;
    margin-bottom: 20px;
}
.tech-resource h3 {
    color: #00ff00;
    margin-top: 0;
}
.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.share-btn {
    padding: 12px 24px;
    border-radius: 0;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: opacity 0.3s;
    border: 2px solid #00ff00;
}
.share-btn:hover {
    opacity: 0.8;
}
.share-btn.twitter {
    background: #1DA1F2;
    color: #fff;
}
.share-btn.reddit {
    background: #FF4500;
    color: #fff;
}
.share-btn.linkedin {
    background: #0077B5;
    color: #fff;
}
footer {
    background: #001a00;
    color: #00ff00;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 3px solid #00ff00;
}
footer p {
    margin: 8px 0;
    line-height: 1.6;
}
footer p:first-child {
    font-weight: bold;
    font-size: 16px;
}
footer p:last-child {
    font-size: 14px;
    color: #00cc00;
}
