body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    background: #4b9c56; 
    color: white; 
    overflow-x: hidden;
} 
.page-wrapper {
    display: flex;
    min-height: 100vh;
}
.ad-sidebar {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    background: rgba(0,0,0,0.2);
}
.sidebar-ad {
    margin-bottom: 10px;
    width: 160px;
    height: auto;
}
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px 10px;
}
.top-banner {
    width: 100%;
    max-width: 728px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.mid-banner {
    width: 100%;
    max-width: 468px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.container { 
    max-width: 1200px; 
    width: 100%; 
} 
.title { 
    text-align: center; 
    margin-bottom: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
} 
.logo { 
    width: 50px; 
    height: 50px; 
} 
.credit { 
    text-align: center; 
    margin-top: 10px; 
    color: rgba(255,255,255,0.7); 
} 
.disclaimer { 
    background: rgba(0,0,0,0.1); 
    padding: 10px; 
    border-radius: 8px; 
    margin-top: 10px; 
    font-size: 14px; 
    text-align: center; 
    line-height: 1.4; 
} 
.adsterra-ref {
    margin: 10px 0;
    text-align: center;
}
#ad-tester {
    position: absolute;
    height: 1px;
    width: 1px;
    left: -10000px;
    top: -10000px;
}
#adblock-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    color: white;
    text-align: center;
    padding-top: 20%;
    font-size: 24px;
    flex-direction: column;
    align-items: center;
}
#adblock-message button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #f3bd12;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}
.proxy-form {
    background: rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}
.url-input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
    border: none;
    font-size: 16px;
    background: white;
    color: #333;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.url-input:focus {
    outline: 2px solid #f3bd12;
    box-shadow: 0 0 8px rgba(243, 189, 18, 0.6);
}
.submit-button {
    background: #f3bd12;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}
.submit-button:hover {
    background: #e0a90f;
}
.error-message {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}
@media (max-width: 998px) { 
    .page-wrapper {
        flex-direction: column;
    }
    .ad-sidebar {
        width: 100%;
        height: auto;
        padding: 5px 0;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    .sidebar-ad {
        margin: 0 5px;
    }
}
@media (max-width: 768px) { 
    .top-banner, .mid-banner {
        height: auto;
    }
    .proxy-form {
        padding: 20px;
    }
    .form-group {
        flex-direction: column;
    }
    .url-input {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    .submit-button {
        width: 100%;
        border-radius: 8px;
    }
}