/* core-theme.css - Estilos Visuales y Temáticos */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background-color: rgba(80, 80, 80, 0.25);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
    background-color: rgba(100, 100, 100, 0.4);
}

body.modal-open .app-container {
    transition: filter 0.3s ease-in-out;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background-color: transparent;
}

.app-container {
    transition: filter 0.3s ease-in-out;
}

.sidebar {
    background-color: #000000;
    transition: transform 0.3s ease-in-out;
}

.app-container.sidebar-active .sidebar {
    box-shadow: 3px 0px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-header {
    border-bottom: 1px solid #2a2a2a;
}

.sidebar-logo-icon {
    color: #ffffff;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.nav-item-header {
    font-size: 0.75rem;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.nav-item a {
    border-radius: 6px;
    font-size: 0.9375rem;
    color: #b3b3b3;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-item a:hover,
.nav-item a.active {
    background-color: #1a1a1a;
    color: #ffffff;
}

.sidebar-footer {
    border-top: 1px solid #2a2a2a;
}

.login-link-sidebar {
    border-radius: 6px;
    font-size: 0.9375rem;
    color: #b3b3b3;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.login-link-sidebar:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.main-content-wrapper {
    transition: padding-left 0.3s ease-in-out;
}

.main-header {
    background-color: rgba(0, 0, 0, 0.8);
}

.sidebar-toggle-button {
    color: #b3b3b3;
    cursor: pointer;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar-toggle-button:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.header-search-button {
    color: #7a7a7a;
    cursor: pointer;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-search-button:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.login-button {
    background-color: #ffffff;
    color: #000000;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.login-button:hover {
    background-color: #f0f0f0;
}

.hero-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #e0e0e0;
}

.hero-title span {
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 600;
}

.luminous-form {
    font-size: 0.6rem;
}

.input-wrapper {
    background-color: #0d0d0d;
    border: 1px solid #333333;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
    font-size: 0.6rem;
}

.input-wrapper::before {
    background: conic-gradient(from var(--gradient-angle, 0deg), #4a01b2, #5b12d9, #2d35ff, #007aff, #1b75d2, #4a01b2);
    border-radius: inherit;
    filter: blur(6px);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.input-wrapper:focus-within {
    border: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
}

.input-wrapper:focus-within::before {
    opacity: 0.8;
    transform: scale(1);
    animation: rotateGradientBorder 1s linear infinite;
}

@keyframes rotateGradientBorder {
    0% {
        --gradient-angle: 0deg;
    }
    100% {
        --gradient-angle: 360deg;
    }
}

.luminous-input {
    font-size: 1.125rem;
    color: #e0e0e0;
    background-color: transparent;
    border-radius: 32px;
}

.luminous-input::placeholder {
    color: #5c5c5c;
}

.luminous-submit-button {
    background-color: #333333;
    color: #b3b3b3;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luminous-submit-button:hover {
    background-color: #121d3d;
    color: #5e76b8;
    border-color: #5e76b8;
    transform: scale(1.05);
}

.chip {
    background-color: #1a1a1a;
    color: #b3b3b3;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.chip:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.scroll-indicator {
    color: #5c5c5c;
    font-size: 0.8125rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.content-section h2 {
    font-size: 2rem;
    color: #e0e0e0;
}

.floating-action-button {
    font-size: 0.90rem;
    font-weight: 600;
    color: #8b8888;
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.floating-action-button::before {
    border-radius: 50px;
    background: linear-gradient(90deg, #4a01b2, #5b12d9, #2d35ff, #007aff, #1b75d2, #4a01b2);
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-action-button:hover::before {
    opacity: 1;
    animation: borderMove 1s linear infinite;
}

.floating-action-button:hover {
    color: #e0e0e0;
    transform: translateY(-2px);
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.floating-action-button.visible {
    opacity: 1;
}

.news-section .section-title {
    font-size: 2.25rem;
    color: #e0e0e0;
}

.news-card {
    background-color: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.news-card-image-container img {
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image-container img {
    transform: scale(1.05);
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ebebeb;
}

.news-card-date {
    font-size: 0.875rem;
    color: #7a7a7a;
}

.news-card-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #5c9ce5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card-link:hover {
    color: #8ab4f8;
    text-decoration: underline;
}

#nosotros-section-title::after {
    background: linear-gradient(var(--angle, 135deg), #4a01b2 0%, #5b12d9 25%, #2d35ff 50%, #007aff 75%, #1b75d2 100%);
    border-radius: 2px;
}

.nosotros-large-image img {
    border-radius: 12px;
}

.nosotros-text-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e8e8e8;
}

.nosotros-text-content p {
    font-size: 1rem;
    color: #b3b3b3;
}

.button-primary {
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.button-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.luminousai-text-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e8e8e8;
}

.luminousai-text-content p {
    font-size: 1rem;
    color: #b3b3b3;
}

.luminousai-large-image img {
    border-radius: 12px;
}

.educme-text-left h3,
.educme-text-right h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e0e0e0;
}

.educme-text-left p,
.educme-text-right p {
    font-size: 0.95rem;
    color: #b3b3b3;
}

.educme-text-left ul,
.educme-text-right ul {
    font-size: 0.95rem;
    color: #b3b3b3;
}

.educme-main-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.search-modal {
    background-color: rgba(8, 8, 10, 0.8);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active {
    opacity: 1;
}

.search-modal-content {
    background-color: #101012;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(50, 50, 55, 0.7);
    color: #e8e8e8;
    transform: scale(0.98) translateY(-10px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal-header {
    border-bottom: 1px solid #2a2a2e;
}

.search-modal-logo {
    opacity: 0.8;
}

.search-modal-close-button {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.search-modal-close-button:hover {
    background-color: #2c2c2f;
    color: #ffffff;
}

.search-modal-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #c0c0c0;
}

.modal-search-input {
    font-size: 1rem;
    color: #e0e0e0;
    background-color: #18181a;
    border: 1px solid #38383d;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-search-input::placeholder {
    color: #606060;
}

.modal-search-input:focus {
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.25);
    outline: none;
}

.modal-search-form svg.search-icon-input {
    color: #777;
}

.search-modal-result-item {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.search-modal-result-item:hover,
.search-modal-result-item:focus {
    background-color: #1f1f22;
    color: #ffffff;
    outline: none;
}

.search-modal-result-item strong {
    color: #50fa7b;
    font-weight: 500;
}

.search-modal-result-item .result-type-label {
    background-color: #2a2a2e;
    color: #888;
    font-size: 0.7rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.search-modal-no-results {
    color: #7a7a7a;
    font-style: italic;
    font-size: 0.95rem;
}

.search-loading-overlay {
    background-color: rgba(16, 16, 18, 0.92);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-loading-overlay.visible {
    opacity: 1;
}

.search-spinner {
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-left-color: #00A0DC;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.api-docs-footer {
    background-color: #080808;
    border-top: 1px solid #1f1f1f;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #d0d0d0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #bbb;
    text-decoration: underline;
}

.footer-social-copyright {
    border-top: 1px solid #1f1f1f;
}

.footer-social-links a {
    color: #777;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-links a:hover {
    color: #ccc;
    transform: scale(1.1);
}

.footer-social-copyright p {
    color: #666;
    font-size: 0.85rem;
}

.highlight-section-on-search {
    animation: highlightPulse 2.5s ease-out;
}

@keyframes highlightPulse {
    0% {
        background-color: transparent;
    }
    20% {
        background-color: rgba(92, 156, 229, 0.08);
    }
    100% {
        background-color: transparent;
    }
}

@media (max-width: 768px) {
    .floating-action-button {
        font-size: 0.9rem;
    }
    .news-section .section-title {
        font-size: 2rem;
    }
    .news-card-title {
        font-size: 1.15rem;
    }
    .search-modal-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .nosotros-text-content h3 {
        font-size: 1.5rem;
    }
    .nosotros-text-content p {
        font-size: 0.95rem;
    }
    .button-primary {
        font-size: 0.9rem;
    }
    .luminousai-text-content h3 {
        font-size: 1.5rem;
    }
    .luminousai-text-content p {
        font-size: 0.95rem;
    }
    .educme-text-left h3,
    .educme-text-right h3 {
        font-size: 1.3rem;
    }
    .educme-text-left p,
    .educme-text-right p,
    .educme-text-left ul,
    .educme-text-right ul {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .chip {
        font-size: 0.8125rem;
    }
}

.header-profile-pic {
    border-radius: 50%;
    border: 1px solid #222;
}

.button-logout {
    background-color: #444;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    border: 1px solid #555;
    transition: background-color 0.2s ease;
}

.button-logout:hover {
    background-color: #555;
}

.sidebar-footer {
    border-top: 1px solid #2a2a2a;
}

.sidebar-footer-profile-pic {
    border-radius: 50%;
    border: 1px solid #222;
}

.sidebar-footer-user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e0e0e0;
}

.sidebar-footer-user-email {
    font-size: 0.75rem;
    color: #b3b3b3;
}

.button-logout-sidebar-footer {
    background: none;
    border: none;
    color: #7a7a7a;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.button-logout-sidebar-footer:hover {
    background-color: #2a2a2a;
    color: #ffffff;
}

.sidebar-footer-ip-info {
    font-size: 0.75rem;
    color: #888;
}

.sidebar-footer-ip-info .ip-label,
.sidebar-footer-ip-info .location-label {
    font-weight: 500;
    color: #aaa;
}

.toggle-ip-visibility {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}

.toggle-ip-visibility .eye-icon {
    transition: color 0.2s ease;
}

.toggle-ip-visibility .eye-icon.gradient-text {
    stroke: #3B82F6;
}

.gradient-text {
    background: linear-gradient(90deg, transparent 0%, transparent 45%, rgba(255, 255, 255, 0.25) 48%, rgba(255, 255, 255, 0.40) 50%, rgba(255, 255, 255, 0.25) 52%, transparent 55%, transparent 100%), linear-gradient(var(--angle, 135deg), #4a01b2 0%, #5b12d9 25%, #2d35ff 50%, #007aff 75%, #1b75d2 100%);
    background-size: 400% 100%, 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.80rem;
    animation: flashSweep 20s linear infinite, gradientRotate 20s linear infinite;
}

@media (max-width: 768px) {
    .hero-title span {
        font-size: clamp(2.4rem, 5vw, 2.6rem);
        font-weight: 600;
    }
}

@media (max-width: 648px) {
    .hero-title span {
        font-size: clamp(2rem, 4vw, 2.4rem);
        font-weight: 600;
    }
}

@keyframes flashSweep {
    0% {
        background-position: -400% 0, 0 0;
    }
    100% {
        background-position: 400% 0, 0 0;
    }
}

@keyframes gradientRotate {
    0% {
        --angle: 135deg;
    }
    100% {
        --angle: 495deg;
    }
}

.login-button.is-loading,
.login-link-sidebar.is-loading {
    color: transparent !important;
    background-color: #333 !important;
    border-color: #444 !important;
}

.login-button.is-loading::before,
.login-link-sidebar.is-loading::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.product-showcase {
    border-radius: 12px;
    border: 1px solid #1f1f1f;
}

.product-header .section-title {
    font-size: 2rem;
    color: #f0f0f0;
    font-weight: 600;
}

.product-header .section-title .gradient-text {
    font-size: inherit;
}

.product-subtitle {
    font-size: 1rem;
    color: #a0a0a0;
}

.product-image-container.main-product-image img {
    border-radius: 10px;
}

.product-core-description p {
    font-size: 0.95rem;
    color: #c0c0c0;
}

.product-main-content {
    border-top: 1px solid #1f1f1f;
}

.product-features-compact h3 {
    font-size: 1.25rem;
    color: #d8d8d8;
    font-weight: 500;
}

.feature-compact-icon {
    color: #888;
}

.feature-compact-title {
    font-size: 1.05rem;
    color: #d8d8d8;
    font-weight: 500;
}

.feature-compact-description {
    font-size: 0.9rem;
    color: #999;
}

.product-cta-section {
    border-top: 1px solid #1f1f1f;
}

.product-cta-section .button-primary,
.product-cta-section .button-secondary {
    font-size: 0.9rem;
}

.main-footer-bottom {
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .product-header .section-title {
        font-size: 1.8rem;
    }
    .product-subtitle {
        font-size: 0.95rem;
    }
    .product-core-description p {
        font-size: 0.9rem;
    }
    .product-features-compact h3 {
        font-size: 1.15rem;
    }
    .feature-compact-title {
        font-size: 1rem;
    }
    .feature-compact-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .product-header .section-title {
        font-size: 1.6rem;
    }
    .product-subtitle {
        font-size: 0.9rem;
    }
}

.promo-modal {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.promo-modal.active {
    opacity: 1;
}

.promo-modal-content {
    background-color: #101012;
    color: #e0e0e0;
    border: 1px solid #28282a;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease-in-out;
}

.promo-modal-close {
    color: #777;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.promo-modal-close:hover {
    color: #fff;
}

.promo-modal-image {
    border-radius: 32px;
}

.promo-modal-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
}

.promo-modal-description {
    font-size: 0.95rem;
    color: #b0b0b0;
}

.promo-modal-description strong {
    color: #e0e0e0;
    font-weight: 600;
}

.promo-button-decline,
.promo-button-accept {
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    border: none;
}

.promo-button-decline {
    background-color: transparent;
    color: #5c9ce5;
}

.promo-button-decline:hover {
    color: #8ab4f8;
    text-decoration: underline;
}

.promo-button-accept {
    background: linear-gradient(var(--angle, 135deg), #4a01b2, #2d35ff, #007aff);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(45, 53, 255, 0.2);
}

.promo-button-accept:hover {
    opacity: 0.9;
    box-shadow: 0 6px 15px rgba(45, 53, 255, 0.3);
    transform: translateY(-1px);
}

.highlight-nav-link {
    background-color: rgba(92, 156, 229, 0.15) !important;
    border: 1px solid #5c9ce5;
    box-shadow: 0 0 10px rgba(92, 156, 229, 0.3);
    color: #ffffff !important;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    animation: pulseHighlight 1.5s infinite alternate;
}

@keyframes pulseHighlight {
    0% {
        box-shadow: 0 0 8px rgba(92, 156, 229, 0.2);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 15px 3px rgba(92, 156, 229, 0.4);
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .promo-modal-title {
        font-size: 1.4rem;
    }
    .promo-modal-description {
        font-size: 0.9rem;
    }
}

.chip {
    background-color: #1a1a1a;
    color: #b3b3b3;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    border: 1px solid transparent;
}

.chip-wrapper.active .chip {
    background-color: #121d3d;
    color: #5e76b8;
    border-color: #5e76b8;
    transform: translateY(-2px);
}

.chip-explanation-panel {
    background-color: #101012;
    color: #c0c0c0;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #2a2a2e;
}

.chip-explanation-panel p {
    font-size: 0.85rem;
}

.profile-modal-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.profile-modal-content {
    background-color: #101012;
    color: #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    animation: profileModalOpenAnim 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    border: 1px solid #2a2a2e;
}

@keyframes profileModalOpenAnim {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.profile-modal-header {
    border-bottom: 1px solid #2a2a2e;
}

.profile-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.profile-modal-close {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}

.profile-modal-close:hover svg {
    color: #fff;
}

.modal-profile-pic-large {
    border-radius: 50%;
    border: 3px solid #4A00E0;
}

.modal-user-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.modal-user-email {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.modal-user-role {
    font-size: 0.8rem;
    color: #888;
    text-transform: capitalize;
    background-color: #2a2a2e;
    border-radius: 15px;
}

.profile-modal-link {
    background-color: #1c1c1e;
    color: #c0c0c0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.profile-modal-link:hover {
    background-color: #2a2a2e;
    color: #ffffff;
}

.profile-modal-link svg {
    color: #888;
    transition: color 0.2s ease;
}

.profile-modal-link:hover svg {
    color: #4A00E0;
}

.profile-modal-footer {
    border-top: 1px solid #2a2a2e;
}

.button-logout-modal {
    background-color: #333;
    color: #e0e0e0;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.button-logout-modal:hover {
    background-color: #c9302c;
    color: #ffffff;
}

.button-logout-modal:hover svg {
    color: #ffffff;
}
/* Estilos adicionales para las tarjetas si no los tienes */
.news-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-content {
    padding: 20px;
}

.news-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.news-card-date {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-card-link {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.news-card-link:hover {
    color: #6bb3ff;
}