.browser-emoji {
    font-size: 3rem;
    text-align: center;
    margin: 20px 0;
}
.header-table {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 25px 0;
}
.header-table th {
    background: linear-gradient(135deg, #4a6ee0 0%, #6a11cb 100%);
    color: white;
    border: none;
}
.header-table tr:hover {
    background-color: #f8f9fa;
}
.user-agent-pool {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 2px dashed #dee2e6;
}
.agent-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 5px solid #4a6ee0;
    transition: transform 0.3s ease;
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
}
.agent-card:hover {
    transform: translateX(10px);
}
.browser-fingerprint {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.fingerprint-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}
.fingerprint-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.fingerprint-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
}
.fingerprint-details {
    flex: 1;
}
.simulation-demo {
    background-color: #1e1e1e;
    color: #d4d4d4;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Consolas', monospace;
    margin: 20px 0;
    height: 300px;
    overflow-y: auto;
}
.demo-line {
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 5px;
    animation: fadeIn 0.5s forwards;
    opacity: 0;
}
@keyframes fadeIn {
    to { opacity: 1; }
}
.demo-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 3px solid #28a745;
}
.demo-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
}
.demo-info {
    background-color: rgba(23, 162, 184, 0.1);
    border-left: 3px solid #17a2b8;
}
.demo-error {
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 3px solid #dc3545;
}
.anti-anti-crawler {
    background-color: #fff8e1;
    border-left: 5px solid #ffb300;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}
.technique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.technique-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.technique-card:hover {
    transform: translateY(-5px);
}
.technique-card .icon {
    font-size: 2.5rem;
    color: #4a6ee0;
    margin-bottom: 15px;
    text-align: center;
}
.technique-card h5 {
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}
.browser-comparison {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.comparison-row {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}
.comparison-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.real-browser, .simulated-browser {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
}
.real-browser {
    background-color: #e8f5e9;
    margin-right: 10px;
}
.simulated-browser {
    background-color: #e3f2fd;
    margin-left: 10px;
}
.comparison-label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c5282;
}
.request-flow {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}
.flow-step {
    display: inline-block;
    width: 180px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    vertical-align: top;
    position: relative;
}
.flow-step:not(:last-child):after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #4a6ee0;
}
.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a6ee0 0%, #6a11cb 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}
.js-simulation {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    min-height: 200px;
}
.js-line {
    color: #d4d4d4;
    font-family: 'Consolas', monospace;
    margin-bottom: 5px;
}
.js-keyword {
    color: #569cd6;
}
.js-string {
    color: #ce9178;
}
.js-comment {
    color: #6a9955;
}
.best-practice-box {
    background-color: #d4edda;
    border-left: 5px solid #28a745;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}
.checklist-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.checklist-item:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}
