/* Colorful Style - Яркие цвета */
.exchange_table_wrap.colorful {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
    overflow: hidden;
}

.exchange_table_wrap.colorful .exchange_type_table {
    padding: 30px;
}

.exchange_table_wrap.colorful .xtt_icon_wrap {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.exchange_table_wrap.colorful .tbl_icon {
    background: white;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 12px 25px;
    color: #666;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.exchange_table_wrap.colorful .tbl_icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exchange_table_wrap.colorful .tbl_icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.exchange_table_wrap.colorful .tbl_icon.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transform: translateY(-5px);
}

.exchange_table_wrap.colorful .xtt_col1,
.exchange_table_wrap.colorful .xtt_col2,
.exchange_table_wrap.colorful .xtt_col3 {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exchange_table_wrap.colorful .xtt_col1:hover,
.exchange_table_wrap.colorful .xtt_col2:hover,
.exchange_table_wrap.colorful .xtt_col3:hover {
    transform: translateY(-10px) scale(1.02);
}

.exchange_table_wrap.colorful .xtt_title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 20px 20px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exchange_table_wrap.colorful .xtt_one_line_left_wrap,
.exchange_table_wrap.colorful .xtt_one_line_right_wrap {
    border-bottom: 2px dashed #f0f0f0;
    transition: all 0.3s ease;
}

.exchange_table_wrap.colorful .xtt_one_line_left_wrap:hover,
.exchange_table_wrap.colorful .xtt_one_line_right_wrap:hover {
    background: linear-gradient(135deg, rgba(255, 154, 158, 0.1) 0%, rgba(250, 208, 196, 0.1) 100%);
    transform: translateX(10px);
}

.exchange_table_wrap.colorful .xtt_one_line_left_wrap.active,
.exchange_table_wrap.colorful .xtt_one_line_right_wrap.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-left: 5px solid #667eea;
}

.exchange_table_wrap.colorful .currency_logo {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
}

.exchange_table_wrap.colorful .hexch_form_wrap {
    padding: 30px;
}

.exchange_table_wrap.colorful .hexch_info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.9) 100%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    border: 2px dashed #667eea;
}

.exchange_table_wrap.colorful .hexch_left,
.exchange_table_wrap.colorful .hexch_right {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.exchange_table_wrap.colorful .hexch_left:hover,
.exchange_table_wrap.colorful .hexch_right:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.exchange_table_wrap.colorful .hexch_btitle.give {
    color: #ff6b6b;
    font-weight: 700;
}

.exchange_table_wrap.colorful .hexch_btitle.get {
    color: #1dd1a1;
    font-weight: 700;
}

.exchange_table_wrap.colorful .hexch_submit {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.exchange_table_wrap.colorful .hexch_submit:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.exchange_table_wrap.colorful .hexch_submit:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.exchange_table_wrap.colorful .hexch_submit:hover:before {
    left: 100%;
}

.exchange_table_wrap.colorful .hexch_submit:disabled {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    transform: none;
    box-shadow: none;
}