:root { --colorMain: #222; --colorAccent: #8a2be2; --colorDanger: #f43f5e; --colorLightBg: #ffffff; --colorDarkBg: #121212; --colorTextLight: #fff; --colorTextDark: #222; --colorTextSecondary: #6b7280; --colorBtnBg: var(--colorAccent); --colorBtnHover: #6a1b9a; --colorBorder: #e5e7eb; --colorVerifyTick: var(--colorAccent); --colorNavbarBg: var(--colorLightBg); --colorSurface: var(--colorLightBg); --maxWidth: 1200px; --transitionSpeed: 0.4s; --transitionFast: 0.2s; --shadowLight: 0 4px 12px rgba(0, 0, 0, 0.06); --shadowNav: 0 2px 8px rgba(0, 0, 0, 0.08); --shadowMenu: 0 10px 30px rgba(0, 0, 0, 0.2); --shadowPopup: 0 15px 40px rgba(0, 0, 0, 0.3); --shadowBadge: 0 2px 6px rgba(0, 0, 0, 0.2); --colorHighlight: #ffc107; --navbarHeight: 3.8rem; --colorPrimary: #8a2be2; --colorPrimaryRgb: 138, 43, 226; --colorAccentRgb: 138, 43, 226; --colorPrimaryDark: #6a1b9a; --colorPrimaryDarkRgb: 106, 27, 154; --colorCardBg: var(--colorSurface); --colorFooterBg: #1a1a1a; --colorFooterText: #ffffff; --colorTextSub: var(--colorTextSecondary); --colorBg: var(--colorLightBg); --colorText: var(--colorTextDark); --colorFooterLink: #adb5bd; }
.dark { --colorBg: #1e1e1e; --colorText: #eeeeee; --colorTextSub: #aaaaaa; --colorBorder: #333333; --colorSurface: #2a2a2a; --colorBtnBg: var(--colorAccent); --colorBtnHover: #6a1b9a; --colorNavbarBg: #1e1e1e; --colorMain: #333; --colorCardBg: var(--colorSurface); --colorFooterBg: #000000; --colorFooterText: #ffffff; --colorFooterLink: #aaaaaa; --shadowLight: 0 4px 12px rgba(255, 255, 255, 0.05); --shadowNav: 0 2px 8px rgba(255, 255, 255, 0.05); }
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
* { box-sizing: border-box; font-family: "Space Grotesk", sans-serif; margin: 0; outline: 0; padding: 0; scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
a { outline: 0; color: var(--colorAccent); transition: color var(--transitionFast); text-decoration: none; }
a:focus { outline: none; }
a:hover { color: var(--colorPrimaryDark); }
body { background: var(--colorBg); color: var(--colorText); line-height: 1.6; transition: background-color var(--transitionSpeed), color var(--transitionSpeed); scroll-padding-top: var(--navbarHeight); }
.wrapper { max-width: var(--maxWidth); margin-inline: auto; padding: 0 1rem; }
.srOnly { border: 0; clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; white-space: nowrap; width: 1px; }
.btnBase { align-items: center; background: var(--colorBtnBg); border: none; border-radius: .7rem; color: var(--colorTextLight); cursor: pointer; display: inline-flex; font-size: .9rem; font-weight: 600; gap: .5rem; outline: 0; padding: .6rem 1.4rem; text-decoration: none; transition: all var(--transitionFast); }
.btnBase:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(var(--colorPrimaryRgb), 0.3); }
.btnPrimary { background: var(--colorAccent); color: var(--colorTextLight); }
.btnPrimary:hover { background: var(--colorPrimaryDark); box-shadow: 0 6px 15px rgba(var(--colorPrimaryRgb), 0.3); }
.btnSecondary { background: var(--colorMain); color: var(--colorTextLight); }
.btnSecondary:hover { background: #333; }
.dark .btnSecondary { background: var(--colorMain); color: var(--colorText); }
.dark .btnSecondary:hover { background: #444; }
.closeBtn { align-items: center; background: var(--colorSurface); border: none; border-radius: 50%; color: var(--colorText); cursor: pointer; display: flex; font-size: 16px; height: 36px; justify-content: center; position: absolute; right: 8px; top: 8px; transition: all var(--transitionFast); width: 36px; z-index: 4; box-shadow: var(--shadowLight); }
.closeBtn:hover { background: var(--colorDanger); color: var(--colorTextLight); transform: scale(1.1) rotate(5deg); box-shadow: 0 4px 10px rgba(var(--colorPrimaryRgb), 0.2); }
.navbar { align-items: center; background: var(--colorNavbarBg); box-shadow: var(--shadowNav); display: flex; justify-content: space-between; padding: .5rem 1.5rem; position: sticky; top: 0; transition: background var(--transitionSpeed); z-index: 999; height: var(--navbarHeight); }
.navbar .logo { align-items: center; color: var(--colorText); display: flex; font-size: 1.1rem; font-weight: 700; gap: .6rem; text-decoration: none; transition: color var(--transitionSpeed); }
.navbar .logo img { border-radius: 50%; height: 36px; object-fit: cover; width: 36px; transition: transform var(--transitionFast); pointer-events: none; user-select: none; }
.navbar .logo:hover img { transform: rotate(-5deg) scale(1.05); }
.verifiedTick { color: var(--colorVerifyTick); font-size: 0.8rem; margin-left: 0.3rem; }
.navLinks { display: flex; align-items: center; gap: 1.5rem; position: static; background: none; box-shadow: none; height: auto; width: auto; transition: none; z-index: auto; }
.navLinks a { color: var(--colorText); font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: color var(--transitionFast); padding: 0.4rem 0; }
.navLinks a:hover { color: var(--colorAccent); }
.navActive { color: var(--colorAccent) !important; font-weight: 700 !important; border-bottom: 2px solid var(--colorAccent); padding-bottom: 2px !important; }
.navActions { align-items: center; display: flex; gap: 1rem; margin-left: auto; }
.menuBtn { background: none; border: none; color: var(--colorText); cursor: pointer; display: none; font-size: 1.6rem; transition: color var(--transitionFast), transform var(--transitionFast); }
.menuBtn:hover { color: var(--colorAccent); transform: scale(1.1); }
.themeToggle { background: none; border: none; color: var(--colorText); cursor: pointer; font-size: 1.3rem; transition: all var(--transitionFast); }
.themeToggle:hover { color: var(--colorAccent); transform: rotate(15deg) scale(1.1); }
.footer { background: var(--colorFooterBg); color: var(--colorFooterText); font-size: .9rem; margin-top: 5rem; padding: 3rem 1rem 1.5rem; transition: background var(--transitionSpeed), color var(--transitionSpeed); text-align: left; position: relative; overflow: hidden; }
.footer:before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 30px; background: radial-gradient(circle at 100% 0, transparent 15px, var(--colorBg) 15px), radial-gradient(circle at 0% 0, transparent 15px, var(--colorBg) 15px); background-size: 30px 30px; background-repeat: repeat-x; background-position: 0% 0; z-index: 2; transform: translateY(-1px); }
.dark .footer:before { background: radial-gradient(circle at 100% 0, transparent 15px, var(--colorBg) 15px), radial-gradient(circle at 0% 0, transparent 15px, var(--colorBg) 15px); background-size: 30px 30px; background-repeat: repeat-x; background-position: 0% 0; }
.footerWrapper { max-width: var(--maxWidth); margin-inline: auto; padding: 2rem 1rem 2rem; display: grid; grid-template-columns: 1.5fr repeat(3, minmax(150px, 1fr)); gap: 3rem; text-align: left; border-bottom: 1px solid #495057; }
.dark .footerWrapper { border-bottom: 1px solid #333; }
.footer:after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.1; background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 70%); background-size: 200% 100%; animation: shimmerEffect 8s infinite linear; }
.dark .footer:after { background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 70%); }
@keyframes shimmerEffect {
0% { background-position: -200% 0; }
100% { background-position: 200% 0; }
}
.footerSection h4 { font-size: 1.1rem; font-weight: 700; color: var(--colorAccent); margin-bottom: 1.2rem; white-space: nowrap; }
.footerLogoText { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; color: var(--colorFooterText) !important; display: flex; align-items: center; gap: .6rem; }
.footerLogoText img { border-radius: 50%; height: 40px; width: 40px; pointer-events: none; user-select: none; }
.footerLogoText:hover img { transform: rotate(-5deg) scale(1.05); }
.footerDesc { color: var(--colorFooterLink); font-size: .9rem; margin-bottom: 1.5rem; line-height: 1.6; }
.footerIcons { margin-top: 1.5rem; display: flex; gap: 1.5rem; justify-content: flex-start; }
.footerIcons .socialLink { color: var(--colorFooterText); font-size: 1.5rem; opacity: .9; outline: 0; transition: all var(--transitionFast); display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); }
.footerIcons .socialLink:hover { opacity: 1; transform: translateY(-2px) scale(1.1); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }
.footerIcons .whatsappLink:hover { background-color: #25d366; }
.footerIcons .facebookLink:hover { background-color: #3b5998; }
.footerIcons .instagramLink:hover { background-color: #e1306c; }
.footerIcons .telegramLink:hover { background-color: #0088cc; }
.footerLinks ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.footerLinks a { color: var(--colorFooterLink); font-size: .9rem; opacity: .9; outline: 0; text-decoration: none; transition: var(--transitionFast); display: flex; align-items: center; gap: 8px; }
.footerLinks a:hover { color: var(--colorAccent); opacity: 1; transform: translateX(4px); }
.footerBottom { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #444; font-size: .85rem; color: var(--colorFooterLink); z-index: 3; position: relative; }
.dark .footerBottom { border-top: 1px solid var(--colorBorder); }
.langSwitcher { position: relative; display: inline-block; }
.langToggle { background: var(--colorSurface); border: 1px solid var(--colorBorder); padding: 7px 14px; border-radius: 50px; cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 6px; box-shadow: var(--shadowLight); transition: all var(--transitionFast) ease; color: var(--colorText); }
.langToggle:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.12); }
.langToggle i { font-size: 14px; opacity: 0.8; transition: transform 0.3s ease; }
.langSwitcher.open .langToggle i { transform: rotate(180deg); }
.langMenu { position: absolute; top: 120%; right: 0; margin-top: 8px; background: var(--colorSurface); border: 1px solid var(--colorBorder); border-radius: 14px; box-shadow: var(--shadowPopup); display: none; flex-direction: column; min-width: 220px; overflow: hidden; z-index: 1000; animation: fadeIn 0.25s ease forwards; opacity: 0; transform: translateY(-10px); padding-bottom: 8px; }
.langMenuContent { max-height: 200px; overflow-y: auto; padding: 0 8px; }
.langSearchWrapper { padding: 8px; border-bottom: 1px solid var(--colorBorder); }
.langSearchInput { width: 100%; padding: 8px 12px; border-radius: 8px; border: 1px solid var(--colorBorder); background: var(--colorSurface); color: var(--colorText); font-size: 15px; transition: border-color var(--transitionFast); }
.langSearchInput:focus { border-color: var(--colorAccent); }
.langOption { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--colorText); padding: 10px 8px; margin: 0 8px; border-radius: 8px; font-size: 15px; transition: background 0.2s ease; cursor: pointer; }
.langOption:hover { background: rgba(var(--colorPrimaryRgb), 0.08); }
.dark .langOption:hover { background: rgba(var(--colorPrimaryRgb), 0.15); }
.langSwitcher.open .langMenu { display: flex; }
.promoPopup { display: none; left: 50%; position: fixed; bottom: -100%; transform: translate(-50%, 0) scale(0.95); z-index: 9999; animation: slideUpScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.popupContent { background: var(--colorCardBg); border-radius: 24px; box-shadow: var(--shadowPopup); max-width: 90vw; overflow: hidden; position: relative; width: 350px; transition: background var(--transitionSpeed); border: 2px solid var(--colorAccent); }
.popupImg { border-radius: 20px 20px 0 0; display: block; height: auto; pointer-events: none; user-select: none; width: 100%; }
.popupWrapper { align-items: center; background: none; display: flex; flex-direction: column; justify-content: center; padding: 16px; position: relative; }
.promoBadge { align-items: center; background: var(--colorDanger); border-radius: 12px; box-shadow: 0 4px 8px rgba(var(--colorPrimaryRgb), 0.3); color: var(--colorTextLight); display: flex; font-size: 14px; font-weight: 700; gap: 6px; padding: 8px 16px; position: absolute; top: 16px; right: 16px; z-index: 3; animation: pulse 1.5s infinite; }
.overlayClose { background: rgba(0, 0, 0, 0.7); display: none; height: 100vh; left: 0; position: fixed; top: 0; transition: opacity var(--transitionFast); width: 100vw; z-index: 997; opacity: 0; }
.overlayClose.show { display: block; opacity: 1; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUpScale {
from { opacity: 0; transform: translate(-50%, 100%) scale(0.9); }
to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.5); } 70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(244, 63, 94, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); } }
@media (max-width: 1200px) { .footerWrapper { grid-template-columns: repeat(2, minmax(150px, 1fr)); } }
@media (max-width: 1024px) {
.navLinks { align-items: flex-start; background: var(--colorSurface); box-shadow: var(--shadowMenu); display: flex; flex-direction: column; gap: 1.8rem; height: auto; max-height: 80vh; padding: 2rem; position: fixed; bottom: -100%; left: 0; right: 0; transition: bottom var(--transitionSpeed), background var(--transitionSpeed); width: 100%; z-index: 998; border-radius: 20px 20px 0 0; }
.navLinks.show { bottom: 0; }
.navLinks a { font-size: 1.05rem; padding: 0.5rem 0; }
.navLinks a:hover { transform: translateX(8px); }
.menuBtn { display: block; }
.closeBtn { display: flex !important; top: 12px; right: 12px; position: absolute; }
.footerWrapper { grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 2rem; text-align: left; }
.footerSection { text-align: left; }
.footerIcons { justify-content: flex-start; }
.footerLinks a { justify-content: flex-start; }
}
@media (min-width: 1025px) { .navLinks { display: flex; } .menuBtn, .navLinks .closeBtn { display: none; } .footerWrapper { grid-template-columns: 1.5fr repeat(3, minmax(150px, 1fr)); } }
@media (max-width: 768px) {
.navbar { padding: .4rem 1rem; }
.navbar .logo img { height: 32px; width: 32px; }
.navbar .logo span { font-size: 1rem; }
.btnBase { font-size: .85rem; padding: .6rem 1.2rem; }
.footerWrapper { grid-template-columns: 1fr; gap: 2rem; }
.footerSection { text-align: center; }
.footerIcons { justify-content: center; }
.footerLinks a { justify-content: center; }
.promoPopup { width: 95%; max-width: 380px; }
}
@media (max-width: 576px) { .navActions { gap: 0.6rem; } .langToggle { padding: 5px 8px; font-size: 13px; } .menuBtn { font-size: 1.3rem; } .themeToggle { font-size: 1.1rem; } }
