.banner-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 10px;
}

.geometric-shape {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ellipse-1 {
    width: 400px;
    height: 280px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.35) 0%, rgba(14, 165, 233, 0.25) 100%);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    transform: rotate(-25deg);
}

.ellipse-2 {
    width: 300px;
    height: 200px;
    background: linear-gradient(160deg, rgba(186, 230, 253, 0.4) 0%, rgba(224, 242, 254, 0.3) 100%);
    border-radius: 50%;
    top: 20px;
    right: 100px;
    transform: rotate(-15deg);
}

.ellipse-3 {
    width: 280px;
    height: 200px;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.3) 0%, rgba(186, 230, 253, 0.2) 100%);
    border-radius: 50%;
    top: 30px;
    left: -30px;
    transform: rotate(20deg);
}

.circle-1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(225deg, rgba(14, 165, 233, 0.2) 0%, rgba(56, 189, 248, 0.15) 100%);
    border-radius: 50%;
    bottom: -40px;
    left: 80px;
}

.polygon-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.35) 0%, rgba(186, 230, 253, 0.25) 100%);
    clip-path: polygon(30% 0%, 100% 20%, 85% 100%, 0% 80%);
    top: -30px;
    left: 200px;
    transform: rotate(5deg);
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 200px solid rgba(125, 211, 252, 0.2);
    top: -60px;
    left: 400px;
    transform: rotate(-20deg);
}

.banner-container:hover .ellipse-1 {
    transform: rotate(-25deg) scale(1.05);
}

.banner-container:hover .ellipse-2 {
    transform: rotate(-15deg) translateX(-20px);
}

.banner-container:hover .ellipse-3 {
    transform: rotate(20deg) translateY(-10px);
}

.banner-content {
    position: relative;
    z-index: 10;
}

.option-card {
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(74, 111, 240, 0.15);
}

.option-card.active {
    border-color: var(--primary);
    background-color: rgba(74, 111, 240, 0.05);
}

.file-upload {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 20px;
    min-height: 120px;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: var(--primary);
    background-color: rgba(74, 111, 240, 0.05);
}

.file-upload input[type="file"] {
    display: none;
}