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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #0a0a0a;
    color: white;
    padding: 20px 0;
    border-bottom: 1px solid #00ffff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0,255,255,0.5);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s;
    padding: 5px 10px;
}

nav a:hover {
    text-shadow: 0 0 10px rgba(0,255,255,0.8);
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    nav ul {
        justify-content: center;
    }
}

main {
    padding: 40px 0;
}

.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 10px 15px;
    background: #0a0a0a;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid #00ffff;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #00ffff;
}

.breadcrumbs a {
    color: #00ffff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-shadow: 0 0 5px rgba(0,255,255,0.5);
}

.last-updated {
    font-size: 14px;
    color: #ff00ff;
    font-style: italic;
    margin: 10px 0 !important;
}

.hero {
    background: #0a0a0a;
    padding: 60px 40px;
    border-radius: 0;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid #00ffff;
}

.hero h1 {
    font-size: 48px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 30px;
    border: 2px solid #00ffff;
}

.section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px auto;
    display: block;
    border: 2px solid #00ffff;
}

.section-image-right {
    width: 100%;
    max-width: 500px;
    height: auto;
    float: right;
    margin: 0 0 20px 30px;
    border: 2px solid #00ffff;
}

@media (max-width: 768px) {
    .section-image-right {
        float: none;
        margin: 20px auto;
        display: block;
    }
}

section {
    background: #0a0a0a;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #00ffff;
}

h2 {
    color: #00ffff;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,255,255,0.3);
}

h3 {
    color: #ff00ff;
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #b0b0b0;
}

.resource-box {
    background: #000;
    border-left: 3px solid #00ffff;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.resource-box:hover {
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.resource-box h3 {
    color: #00ffff;
    margin-top: 0;
}

.resource-box a {
    color: #ff00ff;
    text-decoration: none;
    font-weight: bold;
}

.resource-box a:hover {
    text-shadow: 0 0 5px rgba(255,0,255,0.5);
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.share-btn {
    padding: 12px 30px;
    border-radius: 0;
    text-decoration: none;
    color: #00ffff;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #00ffff;
    background: transparent;
}

.share-btn:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

footer {
    background: #0a0a0a;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 50px;
    border-top: 1px solid #00ffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #00ffff;
    font-weight: bold;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #00ffff;
}

.footer-bottom {
    border-top: 1px solid #00ffff;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 8px 0;
    line-height: 1.6;
    color: #888;
}

.footer-bottom p:first-child {
    font-weight: bold;
    font-size: 16px;
    color: #00ffff;
}

.faq-item {
    background: #000;
    border: 1px solid #00ffff;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 0 15px rgba(0,255,255,0.3);
}

.faq-item h3 {
    color: #00ffff;
    margin-top: 0;
    font-size: 20px;
}
