body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
    transition: opacity 0.3s;
    display: inline-block;
    font-size: 16px;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

a:hover {
    opacity: 0.7;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

p {
    line-height: 1.6;
    max-width: 600px;
}

.main-content {
    display: flex;
    justify-content: space-between;
    padding: 2rem 30px;
}

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-image {
    max-width: 100%;
    max-height: 350px;
    border-radius: 8px;
    object-fit: contain;
}

.container {
    padding: 30px 30px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-left: 10px;
}

.logo-section a {
    border-bottom: none;
    padding-bottom: 0;
    display: block;
}

.logo {
    width: 140px;
    height: auto;
    margin-right: 20px;
}

.brand-image {
    width: 500px;
    height: auto;
}

.nav-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 30px;
}

.nav-item {
    margin-right: 20px;
    margin-bottom: 10px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin: 20px 0;
}

/* Media queries for responsive design */
@media (max-width: 1024px) {
    .logo {
        width: 120px;
    }
    
    .brand-image {
        width: 400px;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .content-right {
        margin-top: 2rem;
    }
    
    .welcome-image {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        width: 110px;
        margin-bottom: 15px;
    }
    
    .brand-image {
        width: 350px;
    }
    
    .nav-section {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .brand-image {
        width: 280px;
    }
    
    .nav-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .brand-image {
        width: 220px;
    }
    
    h1 {
        font-size: 2rem;
    }
}

/* Projects Section Styles */
.projects-section {
    padding: 2rem 30px 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 2px;
}

.projects-title-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.title-image-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-image-container:first-child {
    width: 280px;
}

.title-image-container:last-child {
    width: 250px;
}

.title-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.project-image-container {
    background-color: #111;
    height: 200px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #555;
}

.project-description {
    text-align: center;
    line-height: 1.6;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .projects-title-images {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .title-image-container:first-child,
    .title-image-container:last-child {
        width: 220px;
        height: 50px;
    }
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 2rem 30px 4rem;
}

.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 1rem;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.about-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-image-container {
    flex: 1;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image-container {
        width: 100%;
        height: 350px;
        margin-top: 2rem;
    }
}

/* Quote Section */
.quote-section {
    display: flex;
    padding: 6rem 30px;
    position: relative;
}

.quote-image-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.quote-content {
    margin-left: auto;
    width: 50%;
    text-align: right;
}

.quote-text {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    line-height: 1.3;
}

.quote-author {
    font-size: 1.2rem;
}

/* Footer Section */
.footer-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 3rem 30px;
    position: relative;
}

.support-container {
    display: flex;
    flex-direction: column;
}

.support-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-icon {
    height: 40px;
    width: auto;
}

.emagazine-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code-container {
    width: 120px;
    height: 120px;
    background-color: #fff;
    margin-bottom: 1rem;
}

.emagazine-text {
    font-size: 1.2rem;
    text-align: center;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
}

/* Updates Page Styles */
.updates-container {
    margin-top: 2rem;
}

.update-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.update-item h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.update-date {
    color: #888;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.update-item:last-child {
    border-bottom: none;
}

/* Documentaries Page Styles */
.documentaries-grid,
.hobbies-grid,
.workouts-grid,
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.documentary-card,
.hobby-card,
.workout-card,
.sport-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.documentary-image-container,
.hobby-image-container,
.workout-image-container,
.sport-image-container {
    background-color: #111;
    height: 200px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #555;
}

.documentary-title,
.hobby-title,
.workout-title,
.sport-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.documentary-description,
.hobby-description,
.workout-description,
.sport-description {
    line-height: 1.6;
    color: #ccc;
}

/* Socials Page Styles */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.social-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-icon {
    font-size: 1.2rem;
    color: #fff;
}

.social-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.social-description {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1rem;
}

.social-link {
    color: #2196F3;
    border-bottom: none;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

/* Food Menu Page Styles */
.food-menu-section {
    padding: 2rem 0;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.menu-category {
    margin-bottom: 1rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: rgba(17, 17, 17, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
}

.item-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
    color: #fff;
}

.item-description {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1rem;
}

.item-nutrients {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Settings Page Styles */
.settings-section {
    padding: 2rem 0;
}

.settings-container {
    max-width: 800px;
    margin: 0 auto;
}

.settings-group {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.settings-group-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.setting-label {
    font-size: 1.1rem;
}

.setting-control {
    min-width: 200px;
}

.setting-select,
.setting-input {
    width: 100%;
    padding: 0.6rem;
    background-color: #111;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}

.setting-button {
    padding: 0.6rem 1rem;
    background-color: #1a1a1a;
    color: white;
    border: 1px solid #444;
    cursor: pointer;
    transition: background-color 0.3s;
}

.setting-button:hover {
    background-color: #2a2a2a;
}

/* Switch toggle for settings */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.settings-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.settings-save-button,
.settings-reset-button {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.settings-save-button {
    background-color: #2196F3;
    color: white;
    border: none;
}

.settings-reset-button {
    background-color: transparent;
    color: white;
    border: 1px solid #555;
}

.settings-save-button:hover {
    background-color: #0d8aed;
}

.settings-reset-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Support Page Styles */
.support-main-section {
    padding: 2rem 30px 4rem;
}

.support-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.support-option {
    background-color: rgba(17, 17, 17, 0.5);
    padding: 2rem;
    border-radius: 8px;
}

.support-option-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.support-option-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    background-color: #111;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 0.8rem 1.5rem;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0d8aed;
}

.quick-help-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.quick-help-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.quick-help-list {
    padding-left: 1.2rem;
    margin: 0;
}

.quick-help-list li {
    margin-bottom: 0.8rem;
}

.quick-help-list a {
    border-bottom: none;
}

.contact-info {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

.contact-info-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* FAQ Page Styles */
.faq-section {
    padding: 2rem 30px 4rem;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-button {
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.category-button.active,
.category-button:hover {
    background-color: #2196F3;
    border-color: #2196F3;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background-color: rgba(17, 17, 17, 0.5);
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: normal;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 1.2rem;
    max-height: 300px;
}

/* GitHub Page Styles */
.github-section {
    padding: 2rem 30px 4rem;
}

.github-profile {
    margin-bottom: 3rem;
}

.github-profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.github-avatar {
    width: 120px;
    height: 120px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background-color: #333;
    border-radius: 50%;
}

.github-info {
    flex: 1;
}

.github-username {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.github-bio {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.github-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: bold;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
}

.github-profile-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #2196F3;
    color: white;
    border-radius: 4px;
    border-bottom: none;
    transition: background-color 0.3s;
}

.github-profile-link:hover {
    background-color: #0d8aed;
    opacity: 1;
}

.repos-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.repo-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.repo-filter {
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.repo-filter.active,
.repo-filter:hover {
    background-color: #2196F3;
    border-color: #2196F3;
}

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

.repo-card {
    padding: 1.5rem;
    background-color: rgba(17, 17, 17, 0.5);
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.repo-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.repo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.repo-name {
    font-size: 1.2rem;
    margin: 0;
    font-weight: normal;
}

.repo-language {
    padding: 0.3rem 0.6rem;
    background-color: #333;
    border-radius: 4px;
    font-size: 0.8rem;
}

.repo-description {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 4.5em;
}

.repo-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #888;
}

.repo-stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.stat-icon {
    font-size: 1.1rem;
}

.repo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.last-updated {
    color: #888;
}

.view-repo {
    padding: 0.3rem 0.8rem;
    background-color: transparent;
    border: 1px solid #555;
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s;
    border-bottom: none;
}

.view-repo:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.view-all-repos {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.view-all-button {
    padding: 0.8rem 2rem;
    background-color: #2196F3;
    color: white;
    border-radius: 4px;
    border-bottom: none;
    transition: background-color 0.3s;
}

.view-all-button:hover {
    background-color: #0d8aed;
    opacity: 1;
}

.github-activity {
    margin-top: 4rem;
}

.activity-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.activity-icon {
    width: 2rem;
    height: 2rem;
    background-color: rgba(33, 150, 243, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-content {
    flex: 1;
}

.activity-description {
    margin-bottom: 0.5rem;
}

.activity-description a {
    color: #2196F3;
    border-bottom: none;
}

.activity-message {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.activity-date {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .quick-help-options {
        grid-template-columns: 1fr;
    }
    
    .github-profile-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    
    .github-avatar {
        margin: 0 auto 1.5rem;
    }
    
    .github-stats {
        justify-content: center;
    }
}

/* Articles Page Styles */
.articles-section {
    padding: 2rem 30px 4rem;
}

.articles-filters {
    margin-bottom: 2rem;
}

.search-filter {
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 0.8rem 1.2rem;
    background-color: #111;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    font-size: 1rem;
}

.topic-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.topic-button {
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.topic-button.active,
.topic-button:hover {
    background-color: #2196F3;
    border-color: #2196F3;
}

.featured-article {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background-color: rgba(17, 17, 17, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.featured-article-image {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.featured-article-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #222;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #2196F3;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.featured-article-content {
    flex: 1;
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.article-category {
    color: #2196F3;
}

.featured-article-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.featured-article-excerpt {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more-link {
    display: inline-block;
    color: #2196F3;
    border-bottom: none;
    font-weight: bold;
}

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

.article-card {
    background-color: rgba(17, 17, 17, 0.5);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.article-card-image {
    height: 200px;
    position: relative;
}

.article-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #222;
}

.article-card-content {
    padding: 1.5rem;
}

.article-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.article-card-category {
    color: #2196F3;
}

.article-card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: normal;
    line-height: 1.4;
}

.article-card-excerpt {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.article-card-link {
    color: #2196F3;
    border-bottom: none;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination-button.active,
.pagination-button:hover {
    background-color: #2196F3;
    border-color: #2196F3;
}

.pagination-ellipsis {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

/* Projects Page Styles */
.project-page-section {
    padding: 2rem 30px 4rem;
}

.project-categories {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-category-button {
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.project-category-button.active,
.project-category-button:hover {
    background-color: #2196F3;
    border-color: #2196F3;
}

.featured-project {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(17, 17, 17, 0.5);
    border-radius: 8px;
    border: 1px solid #333;
}

.featured-project-content {
    display: flex;
    gap: 2rem;
}

.featured-project-text {
    flex: 1.5;
}

.project-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: #2196F3;
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.featured-project-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.featured-project-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.project-status {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.project-status.ongoing {
    background-color: rgba(33, 150, 243, 0.3);
    color: #2196F3;
}

.project-status.completed {
    background-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.project-status.planning {
    background-color: rgba(255, 152, 0, 0.3);
    color: #FF9800;
}

.project-date {
    color: #888;
    font-size: 0.9rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.project-tag {
    padding: 0.3rem 0.6rem;
    background-color: #333;
    border-radius: 4px;
    font-size: 0.8rem;
}

.project-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #2196F3;
    color: white;
    border-radius: 4px;
    border-bottom: none;
    transition: background-color 0.3s;
}

.project-link:hover {
    background-color: #0d8aed;
    opacity: 1;
}

.featured-project-image-container {
    flex: 1;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-project-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #222;
    border-radius: 4px;
}

.detailed-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.detailed-project-card {
    background-color: rgba(17, 17, 17, 0.5);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.detailed-project-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.project-card-header {
    position: relative;
    height: 180px;
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #222;
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card-header:hover .project-card-overlay {
    opacity: 1;
}

.view-project-button {
    padding: 0.6rem 1.2rem;
    background-color: #2196F3;
    color: white;
    border-radius: 4px;
    border-bottom: none;
}

.project-card-content {
    padding: 1.5rem;
}

.project-card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.project-card-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
}

.project-card-status {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.project-card-status.ongoing {
    background-color: rgba(33, 150, 243, 0.3);
    color: #2196F3;
}

.project-card-status.completed {
    background-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.project-card-status.planning {
    background-color: rgba(255, 152, 0, 0.3);
    color: #FF9800;
}

.project-card-date {
    color: #888;
    font-size: 0.9rem;
}

.project-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.project-card-tag {
    padding: 0.2rem 0.5rem;
    background-color: #333;
    border-radius: 4px;
    font-size: 0.7rem;
}

/* Research Page Styles */
.research-section {
    padding: 2rem 30px 4rem;
}

.research-categories {
    margin-bottom: 2rem;
}

.research-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.research-tab {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.research-tab.active,
.research-tab:hover {
    background-color: #2196F3;
    border-color: #2196F3;
}

.research-tab-content {
    display: none;
}

.research-tab-content.active {
    display: block;
}

.research-intro {
    margin-bottom: 2.5rem;
}

.research-section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.research-section-description {
    color: #ccc;
    max-width: 800px;
    line-height: 1.6;
}

.publications-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.publication-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.publication-year {
    font-size: 1.8rem;
    color: #2196F3;
    white-space: nowrap;
    padding-top: 0.5rem;
}

.publication-content {
    flex: 1;
}

.publication-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
}

.publication-authors {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.publication-journal {
    color: #888;
    margin-bottom: 1.2rem;
}

.publication-abstract {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.publication-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.publication-link {
    color: #2196F3;
    border-bottom: none;
    font-size: 0.9rem;
}

.publication-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.publication-tag {
    padding: 0.3rem 0.6rem;
    background-color: #333;
    border-radius: 4px;
    font-size: 0.8rem;
}

.ongoing-research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ongoing-research-card {
    background-color: rgba(17, 17, 17, 0.5);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    padding: 1.5rem;
}

.ongoing-research-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ongoing-research-title {
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0;
}

.research-status {
    padding: 0.3rem 0.6rem;
    background-color: rgba(33, 150, 243, 0.3);
    color: #2196F3;
    border-radius: 4px;
    font-size: 0.9rem;
}

.ongoing-research-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ongoing-research-meta {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.meta-label {
    color: #888;
}

.progress-bar {
    height: 6px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    overflow: hidden;
    margin: 0 0.8rem;
    flex-grow: 1;
}

.progress-fill {
    height: 100%;
    background-color: #2196F3;
}

.progress-value {
    color: #2196F3;
}

.ongoing-research-updates h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
}

.ongoing-research-updates ul {
    color: #ccc;
    padding-left: 1.5rem;
}

.ongoing-research-updates li {
    margin-bottom: 0.5rem;
}

.collaborations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.collaboration-card {
    background-color: rgba(17, 17, 17, 0.5);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.collaboration-logo {
    align-self: center;
    margin-bottom: 1.5rem;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background-color: #333;
    border-radius: 8px;
}

.collaboration-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
}

.collaboration-partners {
    color: #888;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.collaboration-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.collaboration-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.detail-icon {
    font-size: 1.2rem;
}

.detail-text {
    color: #ccc;
}

.resource-category {
    margin-bottom: 3rem;
}

.resource-category-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    border-bottom: 1px solid #333;
    padding-bottom: 0.8rem;
}

.resource-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.resource-item {
    background-color: rgba(17, 17, 17, 0.5);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
}

.resource-icon {
    font-size: 2rem;
}

.resource-details {
    flex: 1;
}

.resource-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
}

.resource-description {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.resource-link {
    display: inline-block;
    margin-right: 1rem;
    color: #2196F3;
    border-bottom: none;
}

@media (max-width: 900px) {
    .featured-article {
        flex-direction: column;
    }
    
    .featured-article-image {
        height: 200px;
    }
    
    .featured-project-content {
        flex-direction: column;
    }
    
    .featured-project-image-container {
        height: 200px;
    }
    
    .publication-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .resource-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .quote-image-container {
        width: 100%;
        height: 100%;
        opacity: 0.2;
    }
    
    .quote-content {
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .footer-section {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .support-container, .emagazine-container {
        align-items: center;
    }
    
    .repo-filters {
        flex-wrap: wrap;
        justify-content: center;
    }
}
