.proxy-icon {
    color: #4a6ee0;
    margin-right: 10px;
    font-size: 1.2em;
}
.proxy-box {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #d0e3ff;
}
.warning-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}
.success-box {
    background-color: #f0fff4;
    border-left: 4px solid #38a169;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}
.comparison-table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.comparison-table th {
    background-color: #4a6ee0;
    color: white;
}
.code-tabs {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin: 25px 0;
}
.code-tabs-nav {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.code-tab {
    background: none;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 0.9em;
}
.code-tab.active {
    background-color: #4a6ee0;
    color: white;
}
.code-tab-content {
    display: none;
    padding: 0;
}
.code-tab-content.active {
    display: block;
}
.proxy-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}
.proxy-type-card {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.proxy-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.proxy-pool-visual {
    background-color: white;
    border: 2px solid #4a6ee0;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}
.proxy-node {
    display: inline-block;
    background-color: #4a6ee0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px;
    font-size: 0.9em;
}
.proxy-active {
    background-color: #38a169;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
