/* Common styles for all pages */
@import url('../assets/css/style.css');

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 123, 255, 0.1));
    padding: 2rem 0;
    margin: 120px 0 2rem 0;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.page-header h1 {
    font-size: 2.5rem;
    color: #00ff41;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.breadcrumb {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    margin-top: 100px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    margin-right: 0.5rem;
}

.breadcrumb a:hover {
    color: #00ff41;
}

.content-section {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid #333;
}

.content-section h2 {
    color: #00ff41;
    margin-bottom: 1rem;
    border-bottom: 2px solid #00ff41;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    color: #007bff;
    margin: 1.5rem 0 1rem 0;
}

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

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #00ff41;
    transition: all 0.3s ease;
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.skill-card h4 {
    color: #007bff;
    margin-bottom: 1rem;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    background: rgba(0, 0, 0, 0.5);
    margin: 0.5rem 0;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #00ff41;
    transition: all 0.3s ease;
}

.resource-list li:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateX(5px);
}

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

.resource-list a:hover {
    color: #00ff41;
}

.lab-exercise {
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(106, 17, 203, 0.1));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid #007bff;
}

.lab-exercise h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.progress-tracker {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.progress-bar {
    background: #333;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    background: linear-gradient(90deg, #00ff41, #007bff);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.back-button {
    display: inline-block;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.cert-requirements {
    background: rgba(0, 255, 65, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #00ff41;
    margin: 1rem 0;
}

.cert-requirements h4 {
    color: #00ff41;
    margin-bottom: 1rem;
}

/* Certifications Page Styles */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 123, 255, 0.1));
    border-radius: 15px;
    margin: 120px 0 3rem 0;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.hero-section h1 {
    font-size: 3rem;
    color: #00ff41;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.certification-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ff41;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #fff;
    font-size: 1rem;
    opacity: 0.8;
}

/* Certification Categories */
.certification-categories {
    margin: 3rem 0;
}

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

.category-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-card p {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cert-count {
    color: #007bff;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Featured Certifications */
.featured-certifications {
    margin: 3rem 0;
}

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

.cert-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.cert-card.featured {
    border: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.cert-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cert-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.cert-info h3 {
    color: #00ff41;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cert-full-name {
    color: #fff;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cert-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.badge.difficulty-beginner {
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
    border: 1px solid #00ff41;
}

.badge.difficulty-intermediate {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.badge.difficulty-advanced {
    background: rgba(255, 69, 0, 0.2);
    color: #ff4500;
    border: 1px solid #ff4500;
}

.badge.difficulty-expert {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid #ff0000;
}

.badge.category-offensive {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.badge.category-defensive {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid #007bff;
}

.badge.category-cloud {
    background: rgba(135, 206, 235, 0.2);
    color: #87ceeb;
    border: 1px solid #87ceeb;
}

.badge.category-specialized {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    border: 1px solid #8a2be2;
}

.cert-content {
    margin-bottom: 2rem;
}

.cert-content p {
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cert-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.detail {
    color: #fff;
    opacity: 0.8;
    font-size: 0.9rem;
}

.detail strong {
    color: #00ff41;
}

.cert-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #00ff41, #007bff);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    background: #007bff;
    color: white;
}

/* All Certifications */
.all-certifications {
    margin: 3rem 0;
}

.certification-filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

.filter-group select,
.filter-group input {
    padding: 0.5rem;
    border: 1px solid #333;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    min-width: 150px;
}

.certification-list {
    display: grid;
    gap: 1.5rem;
}

.cert-item {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.cert-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cert-item-header h3 {
    color: #00ff41;
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cert-item p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cert-item-actions {
    display: flex;
    gap: 1rem;
}

/* Certification Paths */
.certification-paths {
    margin: 3rem 0;
}

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

.path-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.path-card:hover {
    border-color: #00ff41;
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
}

.path-card h3 {
    color: #00ff41;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.path-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ff41, #007bff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-content p {
    color: #fff;
    opacity: 0.7;
    margin: 0;
    font-size: 0.9rem;
}

/* Study Resources */
.study-resources {
    margin: 3rem 0;
}

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

.resource-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .skill-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .certification-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .certification-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-header {
        flex-direction: column;
        text-align: center;
    }
    
    .cert-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .certification-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cert-item-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cert-item-header h3 {
        min-width: auto;
    }
    
    .path-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .external-resource-card {
        margin: 1rem 0;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .matrix-grid {
        grid-template-columns: 1fr;
    }
    
    .research-list {
        flex-direction: column;
    }
    
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* AI Security Hub External Resource Styles */
.external-resource-card {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(0, 123, 255, 0.05));
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.external-resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff41, #007bff);
}

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

.resource-header h3 {
    color: #00ff41;
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-type {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid #007bff;
}

.external-resource-card p {
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.external-resource-card a {
    color: #00ff41;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.external-resource-card a:hover {
    color: #007bff;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.resource-highlights {
    margin: 2rem 0;
}

.resource-highlights h4 {
    color: #00ff41;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.highlight-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.highlight-item strong {
    color: #00ff41;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-item li {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.highlight-item li::before {
    content: '→';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.highlight-item li a {
    color: #00ff41;
    text-decoration: none;
    font-weight: bold;
}

.highlight-item li a:hover {
    color: #007bff;
}

.resource-matrices {
    margin: 2rem 0;
}

.resource-matrices h4 {
    color: #00ff41;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.matrix-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 123, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.matrix-item:hover {
    transform: translateY(-3px);
    border-color: #007bff;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
}

.matrix-item h5 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.matrix-item p {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.resource-research {
    margin: 2rem 0;
}

.resource-research h4 {
    color: #00ff41;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.research-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.research-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.research-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.research-item.critical {
    border-left-color: #ff4444;
}

.research-item.case-study {
    border-left-color: #ffa500;
}

.research-item.research {
    border-left-color: #007bff;
}

.research-item.future {
    border-left-color: #8a2be2;
}

.research-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.research-item.critical .research-type {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.research-item.case-study .research-type {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.research-item.research .research-type {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid #007bff;
}

.research-item.future .research-type {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    border: 1px solid #8a2be2;
}

.research-item h5 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.research-item p {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.research-date {
    display: inline-block;
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.resource-standards {
    margin: 2rem 0;
}

.resource-standards h4 {
    color: #00ff41;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.standard {
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.resource-cta {
    margin: 2rem 0;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 65, 0.3);
}

.resource-cta h4 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.resource-cta p {
    color: #fff;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 150px;
}

/* Related Content Section - Internal Linking */
.related-content-section {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(0, 123, 255, 0.05));
    border: 2px solid rgba(0, 255, 65, 0.3);
    margin-top: 3rem;
}

.related-content-section h2 {
    color: #00ff41;
    text-align: center;
    margin-bottom: 1rem;
}

.related-content-section > p {
    text-align: center;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.related-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-section {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
}

.related-section:hover {
    border-color: rgba(0, 255, 65, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

.related-section h3 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-links li {
    margin-bottom: 0.8rem;
}

.related-links a {
    color: #007bff;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 123, 255, 0.05);
    border: 1px solid transparent;
}

.related-links a:hover {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    border-color: rgba(0, 255, 65, 0.3);
    padding-left: 1rem;
}

.related-links a::before {
    content: "→";
    margin-right: 0.5rem;
    color: #00ff41;
    font-weight: bold;
}

/* Responsive adjustments for related content */
@media (max-width: 768px) {
    .related-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .related-section {
        padding: 1.2rem;
    }
}