.color-title .textDesc
{
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    margin-top: 10px;
    font-family: Roboto;
}

header .logo1 {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    margin: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.modal-content.collapsed {
    max-height: 0;
    overflow: hidden;
}
.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    background: #4a69bd;
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
}

.options-list {
    list-style: none;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
}

.option-item {
    width: 45%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f2f6;
    transition: background 0.2s ease;
}

.option-item:last-child {
    border-bottom: none;
}

.option-item:hover {
    background: #f8f9fa;
}

.platform-badge {
    background: #4a6bdf;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-letter {
    background: #4a69bd;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
}

.platform-name {
    font-weight: 500;
    color: #2d3436;
}

.buy-btn {
    background: #4a69bd;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.buy-btn:hover {
    background: #3c58a8;
}

.modal-footer {
    padding: 15px;
    border-top: 1px solid #f1f2f6;
    text-align: right;
}

.close-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
}

.close-btn:hover {
    background: #c0392b;
}
