.robotics-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.robotics-section h1, .robotics-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}
.robotics-section h1:first-of-type {
    margin-top: 0;
}
.robotics-section h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
}
.robotics-section p {
    margin-bottom: 1rem;
    color: var(--text-color);
}
.robotics-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 1rem 0 1.5rem;
}
.robotics-tech-tag {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
}
.robotics-status-box {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-left: 4px solid #fb923c;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}
.robotics-status-box strong {
    color: #fb923c;
}
.robotics-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 2rem 0;
}
.robotics-gallery a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}
.robotics-gallery a:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px var(--shadow-color);
}
.robotics-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.robotics-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 2rem 0;
}
.robotics-video-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
    background: var(--card-background);
}
.robotics-video-item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px var(--shadow-color);
}
.robotics-video-thumbnail {
    width: 100%;
    height: 120px;
    position: relative;
    
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
}
.robotics-play-button {
    width: 50px;
    height: 50px;
    background: rgba(0, 122, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}
.robotics-video-title {
    padding: 10px;
    font-size: 0.85rem;
    color: var(--text-color);
    text-align: center;
}
.robotics-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}
.robotics-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 500px;
}
.robotics-close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}
.robotics-modal video {
    max-height: 60vh;
    width: 100%;
    border-radius: 8px;
}
.robotics-last-updated {
    text-align: center;
    color: var(--secondary-text);
    font-size: 0.85rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.robotics-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.robotics-video-thumbnail .robotics-play-button {
    position: relative;
    z-index: 1;
}
