body {
    background-color: #1a1a1a;
}

.blurred-bg {
    filter: blur(30px);
    transform: scale(1.1);
}

.experience-section {
    padding: 60px 0;
    flex: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.experience-item {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                background-color 0.3s ease, 
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

.experience-img{
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
}

.experience-content h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.experience-content .position {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.experience-content .date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.experience-content p {
    line-height: 1.6;
    color: #ddd;
}

/*  Images on side when viewed on landscape */
.side-image-container {
    position: static;
    top: 1.5rem;
}

.side-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.caption {
    color: #888;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}
/*  Images on side when viewed on landscape */

.skip {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}