/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #0f172a; /* Dark background as seen in image */
    color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.wrapper {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.top-title {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 20px;
    font-weight: 500;
}

.main-logo {
    color: #e11d48; /* Red branding color */
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Search Bar Styling */
.search-container {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 35px auto;
}

.search-container input {
    flex: 1;
    padding: 12px 15px;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 4px 0 0 4px;
    color: #fff;
    font-size: 15px;
    outline: none;
    text-align: center;
}

.search-container button {
    padding: 12px 25px;
    background-color: #334155;
    border: 1px solid #334155;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s;
}

.search-container button:hover {
    background-color: #475569;
}

/* Content Box & Border Design */
.content-box {
    border-left: 2px solid #16a34a; /* Green left border */
    border-right: 2px solid #e11d48; /* Red right border */
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Action Buttons */
.btn {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
.btn:hover {
    transform: scale(1.02);
}

.btn-red { background: linear-gradient(to right, #dc2626, #b91c1c); }
.btn-blue { background: linear-gradient(to right, #2563eb, #1d4ed8); }

/* Notice Texts */
.notice {
    font-size: 15px;
    font-weight: bold;
}
.warning { color: #f59e0b; } /* Orange/Yellow notice text */

/* Info Section */
.info-section {
    line-height: 1.8;
    font-size: 15px;
    color: #cbd5e1;
}
.gold-text { color: #fbbf24; font-weight: bold; }
.red-text { color: #f43f5e; font-weight: bold; }

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

.social-btn {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fb-btn { background-color: #1e3a8a; border: 1px solid #3b82f6; }
.tg-btn { background-color: #0ea5e9; border: 1px solid #38bdf8; }

/* SEO Tags Style */
.seo-tags {
    margin-top: 30px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
}

/* Bottom Languages Bar */
.languages-bar {
    width: 100%;
    background-color: #1e293b;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: bold;
    color: #fbbf24;
    letter-spacing: 1px;
}

/* Responsive for Mobile Devices */
@media (max-width: 600px) {
    .content-box { padding: 20px 10px; }
    .social-buttons { flex-direction: column; width: 100%; align-items: center; }
    .social-btn { width: 100%; max-width: 300px; justify-content: center; }
    .main-logo { font-size: 36px; }
}