<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-dark: #0a0a0a;
    --primary-red: #d32f2f;
    --accent-red: #b71c1c;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
    --card-dark: #1a1a1a;
    --border-red: #d32f2f;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(211, 47, 47, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(211, 47, 47, 0.08) 0%, transparent 20%);
    z-index: -1;
    pointer-events: none;
}
a {
    text-decoration: none;
}

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

/* Header Styles */
header {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-red);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(to right, var(--text-light) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-red);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    transition: color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}
nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}
nav ul li a:hover {
    color: var(--primary-red);
}

nav ul li a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-login {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-red);
}

.btn-login:hover {
    background: rgba(211, 47, 47, 0.2);
}

.btn-register {
    background: var(--primary-red);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.btn-register:hover {
    background: var(--accent-red);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"&gt;&lt;path fill="%23d32f2f" fill-opacity="0.1" d="M0,224L48,208C96,192,192,160,288,160C384,160,480,192,576,197.3C672,203,768,181,864,181.3C960,181,1056,203,1152,202.7C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"&gt;&lt;/path&gt;&lt;/svg&gt;') bottom/100% no-repeat;
    z-index: -1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary-red);
    border-radius: 3px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 40px auto 0;
    line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    color: var(--primary-red);
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 10px;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

/* Main Content */
.academy-container {
    display: flex;
    gap: 40px;
    padding: 80px 0;
}

/* Articles Section */
.articles-section {
    flex: 2;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--card-dark);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}

.article-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(211, 47, 47, 0.3));
}

.article-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #FFFFFF;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.article-meta i {
    margin-right: 5px;
    color: var(--primary-red);
}

.article-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 2px;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

/* Sidebar */
.sidebar {
    flex: 1;
}

.sidebar-widget {
    background: var(--card-dark);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-red);
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-red);
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s;
}

.categories-list a:hover {
    color: var(--primary-red);
}

.categories-list span {
    background: rgba(211, 47, 47, 0.2);
    color: var(--primary-red);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.popular-articles {
    list-style: none;
}

.popular-articles li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.popular-articles li:last-child {
    margin-bottom: 0;
}

.popular-thumb {
    width: 80px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    flex-shrink: 0;
    position: relative;
}

.popular-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(211, 47, 47, 0.3);
}

.popular-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.popular-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.popular-content a:hover {
    color: var(--primary-red);
}

.popular-content .article-meta {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(211, 47, 47, 0.1);
    color: var(--text-gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-red);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Trading Tools */
.trading-tools {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"&gt;&lt;rect width="100" height="100" fill="none" stroke="%23333" stroke-width="0.5"/&gt;&lt;/svg&gt;');
    background-size: 40px;
    padding: 80px 0;
    text-align: center;
}

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

.tool-card {
    background: var(--card-dark);
    border-radius: 10px;
    padding: 40px 20px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.tool-icon {
    width: 70px;
    height: 70px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--primary-red);
}

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tool-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.tool-link {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.page-numbers {
    display: flex;
    list-style: none;
}

.page-numbers li {
    margin: 0 5px;
}

.page-numbers a,
.page-numbers span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-light);
    background: var(--card-dark);
    transition: all 0.3s ease;
}

.page-numbers a:hover,
.page-numbers .active a{
    background: var(--primary-red);
    color: var(--text-light);
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 70px 0 30px;
    border-top: 1px solid var(--border-red);
}

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

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-links i {
    width: 20px;
    color: var(--primary-red);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-dark);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}
.copyright a {
    color: var(--text-gray);
}
.copyright a:hover {
    color: var(--primary-red);
}
/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .academy-container {
        flex-direction: column;
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}</pre></body></html>