* {
    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: 2px solid #ff006e;
    box-shadow: 0 5px 20px rgba(255,0,110,0.3);
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff006e, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255,0,110,0.5);
}

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

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

nav a:hover {
    color: #ff006e;
    text-shadow: 0 0 10px rgba(255,0,110,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: #1a1a1a;
    border-radius: 0;
    font-size: 14px;
    border-left: 3px solid #ff006e;
}

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

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

.breadcrumbs a {
    color: #06ffa5;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #ff006e;
}

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

.hero {
    background: #0a0a0a;
    padding: 60px 40px;
    border-radius: 0;
    margin-bottom: 40px;
    text-align: center;
    border: 2px solid #ff006e;
    box-shadow: 0 0 30px rgba(255,0,110,0.3);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 100px;
    height: 100px;
    border-top: 2px solid #06ffa5;
    border-right: 2px solid #06ffa5;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid #ffbe0b;
    border-left: 2px solid #ffbe0b;
}

.hero h1 {
    font-size: 48px;
    background: linear-gradient(45deg, #ff006e, #06ffa5, #ffbe0b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonGlow 3s ease infinite;
    margin-bottom: 20px;
    font-weight: bold;
}

@keyframes neonGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.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 #06ffa5;
    box-shadow: 0 0 20px rgba(6,255,165,0.3);
}

section {
    background: #0a0a0a;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 3px solid #ff006e;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

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

h4 {
    color: #ffbe0b;
    font-size: 18px;
    margin-bottom: 10px;
}

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

/* Creative Image Layouts */
.image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 30px 0;
}

.split-left {
    width: 100%;
    height: auto;
    border: 2px solid #06ffa5;
    box-shadow: -10px 10px 0 rgba(6,255,165,0.2), 0 0 20px rgba(6,255,165,0.3);
}

.split-content {
    padding: 20px;
}

.image-float {
    margin: 30px 0;
}

.float-right {
    width: 50%;
    max-width: 500px;
    height: auto;
    float: right;
    margin: 0 0 20px 30px;
    border: 2px solid #ffbe0b;
    box-shadow: 10px 10px 0 rgba(255,190,11,0.2), 0 0 20px rgba(255,190,11,0.3);
}

.image-grid {
    margin: 30px 0;
}

.grid-main {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    border: 2px solid #ff006e;
    box-shadow: 0 0 30px rgba(255,0,110,0.4);
}

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

.grid-item {
    background: #1a1a1a;
    padding: 20px;
    border-left: 3px solid #06ffa5;
    transition: all 0.3s;
}

.grid-item:hover {
    border-left-color: #ff006e;
    box-shadow: 0 0 15px rgba(255,0,110,0.3);
}

@media (max-width: 768px) {
    .image-split {
        grid-template-columns: 1fr;
    }
    
    .float-right {
        width: 100%;
        float: none;
        margin: 0 0 20px 0;
    }
}

.resource-box {
    background: #1a1a1a;
    border-left: 4px solid #06ffa5;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.resource-box:hover {
    border-left-color: #ff006e;
    box-shadow: 0 0 20px rgba(255,0,110,0.3);
}

.resource-box h3 {
    color: #06ffa5;
    margin-top: 0;
}

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

.resource-box a:hover {
    color: #ffbe0b;
    text-shadow: 0 0 5px rgba(255,190,11,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: #06ffa5;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #06ffa5;
    background: transparent;
}

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

.faq-item {
    background: #1a1a1a;
    border: 2px solid #ff006e;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 0 20px rgba(255,0,110,0.4);
}

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

footer {
    background: #0a0a0a;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 50px;
    border-top: 2px solid #ff006e;
    box-shadow: 0 -5px 20px rgba(255,0,110,0.3);
}

.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: #06ffa5;
    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: #ff006e;
}

.footer-bottom {
    border-top: 2px solid #ff006e;
    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: #06ffa5;
}
