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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #eee;
    background: #1a1a2e;
}

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

header {
    background: #16213e;
    padding: 15px 0;
    border-bottom: 2px solid #0f3460;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e94560;
    text-decoration: none;
}

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

nav a {
    color: #eee;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    background: rgba(233,69,96,0.1);
}

nav a:hover {
    background: rgba(233,69,96,0.3);
    color: #e94560;
}

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

main {
    padding: 20px 0;
}

.top-banner {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: #16213e;
    border: 2px solid #0f3460;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.top-banner:hover .banner-img {
    transform: scale(1.02);
}

.hero {
    background: #16213e;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 2px solid #0f3460;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 28px;
    color: #e94560;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
}

section {
    background: #16213e;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 2px solid #0f3460;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

h2 {
    color: #e94560;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: #16213e;
    padding: 30px;
    border-radius: 5px;
    border: 2px solid #0f3460;
}

.feature-content h3 {
    color: #e94560;
    margin-top: 0;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 3px solid #e94560;
    box-shadow: 0 5px 20px rgba(233,69,96,0.4);
    transition: all 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(233,69,96,0.6);
}

@media (max-width: 768px) {
    .feature-card {
        grid-template-columns: 1fr;
    }
}

.tech-resource {
    background: #0f3460;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #e94560;
    border-radius: 5px;
    transition: all 0.3s;
}

.tech-resource:hover {
    background: #16213e;
    box-shadow: 0 5px 15px rgba(233,69,96,0.3);
}

.tech-resource h3 {
    color: #e94560;
    margin-top: 0;
}

.tech-resource a {
    color: #53a8b6;
    text-decoration: none;
    font-weight: bold;
}

.tech-resource a:hover {
    color: #e94560;
    text-decoration: underline;
}

.resource-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 5px;
    border: 2px solid #e94560;
    margin: 15px 0;
    display: block;
    box-shadow: 0 3px 10px rgba(233,69,96,0.3);
}

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

.share-btn {
    padding: 12px 30px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s;
    border-radius: 5px;
    background: #e94560;
}

.share-btn:hover {
    background: #d63447;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233,69,96,0.4);
}

footer {
    background: #16213e;
    color: #eee;
    padding: 40px 20px 20px;
    margin-top: 30px;
    border-top: 2px solid #0f3460;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #53a8b6;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #e94560;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 2px solid #0f3460;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 10px 0;
    line-height: 1.6;
    color: #aaa;
    font-size: 14px;
}

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

.footer-bottom p strong {
    color: #e94560;
}
