/*
 Theme Name: Pocket Option
 Theme URI: https://www.pocket-option.com/
 Author: Grok
 Description: Theme for Pocket Option
 Version: 2.14
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000d1f;
    color: #fff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center !important;
    color: #f7c948 !important;
}

.header {
    background: #001a3d;
    padding: 15px 0;
    border-bottom: 2px solid #e4b040;
    position: relative;
    z-index: 10;
}

.header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    text-align: center;
    flex: 1;
}

.lgtext {
    color: #e4b040;
    font-size: 32px;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo-pocket, .logo-option, .logo-dash, .logo-com {
    display: inline-block;
}

.logo-dash {
    animation: throwDash 1s ease forwards;
    margin: 0 5px;
}

.logo-com {
    animation: throwCom 1s ease forwards;
}

@keyframes throwDash {
    0% { transform: scale(3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes throwCom {
    0% { transform: scale(3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #e4b040;
}

.promo {
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 30px 20px 60px;
    background: url('/wp-content/uploads/poc/fon-pocketoption.jpg') no-repeat center/cover;
    position: relative;
    overflow: hidden;
}

.promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 183 174 / 18%);
    z-index: 1;
}

.promo-content {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 40px;
    border-radius: 12px;
}

.promo-inner {
    max-width: 900px;
    margin: 0 auto;
}

.promo-title {
    font-size: 48px;
    color: #f7c948 !important;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease forwards;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-title-top {
    font-size: 0.8em;
    color: #00aaff !important;
}

.promo-title-main {
    font-size: 1.2em;
    font-weight: bold;
}

.promo-text {
    font-size: 22px;
    margin: 30px 0 40px;
    padding: 25px;
    background: rgb(0 0 0 / 43%);
    border: 1px solid #3783b9;
    border-radius: 12px;
    animation: borderPulse 3s ease-in-out infinite;
    z-index: 1000;
}

@keyframes borderPulse {
    0% { border-color: #3783b9; }
    50% { border-color: #37b983; }
    100% { border-color: #3783b9; }
}

.promo-text span, .promo-text i {
    display: block;
    margin-bottom: 15px;
}

.promo-text b {
    color: #f7c948;
}

.btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.btn {
    padding: 18px 50px;
    background: #e4b040;
    color: #000d1f;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.btn:hover {
    background: #f7c948;
    color: #000d1f;
    transform: translateY(-3px);
}

.download-btn {
    background: #003087;
    color: #fff;
}

.download-btn:hover {
    background: #0041b8;
    color: #fff;
}

.promo-stats-intro {
    font-size: 24px;
    color: #f7c948 !important;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease forwards 0.5s;
    text-align: center !important;
}

.promo-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #6c5b03;
    flex: 1;
    width: 200px;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.sttil {
    font-size: 18px;
    color: #00aaff !important;
}

.stat-value {
    font-size: 36px;
    color: #f7c948;
    margin: 15px 0;
}

.stat-text {
    font-size: 16px;
    color: #ccc;
}

.content-section {
    padding: 60px 20px;
    background: #000d1f;
}

.footer {
    background: #000d1f;
    padding: 60px 20px;
    border-top: 3px solid #e4b040;
}

.footer .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    grid-column: 1;
}

.footer-menu, .footer-extra-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-menu li a, .footer-extra-links li a {
    color: #e4b040;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-menu li a:hover, .footer-extra-links li a:hover {
    color: #f7c948;
}

.share-menu {
    position: fixed !important;
    top: 50% !important;
    right: 10px !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 1000 !important;
}

.share-link {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s;
}

.share-telegram { background-image: url('/wp-content/uploads/poc/soc/telegram-icon.webp'); }
.share-vk { background-image: url('/wp-content/uploads/poc/soc/vk-icon.webp'); }
.share-ok { background-image: url('/wp-content/uploads/poc/soc/ok-icon.webp'); }
.share-instagram { background-image: url('/wp-content/uploads/poc/soc/instagram-icon.webp'); }
.share-twitter { background-image: url('/wp-content/uploads/poc/soc/twitter-icon.webp'); }
.share-facebook { background-image: url('/wp-content/uploads/poc/soc/facebook-icon.webp'); }
.share-whatsapp { background-image: url('/wp-content/uploads/poc/soc/whatsapp-icon.webp'); }
.share-linkedin { background-image: url('/wp-content/uploads/poc/soc/linkedin-icon.webp'); }

.share-link:hover {
    transform: scale(1.2);
}

.footer-text {
    grid-column: 1 / -1;
    font-size: 14px;
    color: #ccc;
    margin-top: 20px;
}

.disclaimer {
    grid-column: 1 / -1;
    font-size: 12px;
    color: #999;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.footer-counter {
    grid-column: 1 / -1;
    margin-top: 20px;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 1024px) {
    .promo-title { font-size: 40px !important; }
    .promo-text { font-size: 20px !important; }
    .promo-stats { flex-direction: column !important; gap: 30px !important; }
    .stat { width: 100% !important; }
}

@media screen and (max-width: 768px) {
    .header .wrap { flex-direction: column !important; gap: 15px !important; }
    .lgtext { font-size: 28px !important; }
    .menu-toggle { display: none !important; }
    .nav-menu { display: none !important; flex-direction: column !important; width: 100% !important; background: #001a3d !important; padding: 20px !important; }
    .nav-menu.active { display: flex !important; }
    .nav-menu li a { font-size: 13px !important; }
    .promo { padding: 20px 20px 40px !important; }
    .promo-content { padding: 30px !important; }
    .promo-title { font-size: 24px !important; }
    .promo-title-top { font-size: 1em !important; }
    .promo-title-main { font-size: 1.4em !important; }
    .promo-text { font-size: 20px !important; padding: 20px 30px !important; margin: 30px auto !important; max-width: 600px !important; z-index: 1000 !important; }
    .btns { flex-direction: column !important; gap: 20px !important; justify-content: center !important; align-items: center !important; }
    .btn { padding: 15px 50px !important; font-size: 15px !important; width: 100% !important; text-align: center !important; border-radius: 12px !important; }
    .promo-stats-intro { font-size: 20px !important; }
    .sttil { font-size: 27px !important; color: #00aaff !important; }
    .stat { background: rgb(0 0 0 / 51%); }
    .stat-value { font-size: 27px !important; }
    .stat-text { font-size: 16px !important; }
    .share-menu { right: 8px !important; gap: 10px !important; }
    .share-link { width: 30px !important; height: 30px !important; }
}

@media screen and (max-width: 480px) {
    .lgtext { font-size: 24px !important; }
    .promo-title { font-size: 21px !important; }
    .promo-title-top { font-size: 0.9em !important; }
    .promo-title-main { font-size: 1.3em !important; }
    .promo-text { font-size: 18px !important; padding: 15px 25px !important; margin: 30px auto !important; max-width: 500px !important; z-index: 1000 !important; }
    .btn { padding: 12px 0 !important; font-size: 14px !important; width: 100% !important; text-align: center !important; border-radius: 10px !important; }
    .btns { gap: 15px !important; }
    .promo-stats-intro { font-size: 19px !important; }
    .sttil { font-size: 24px !important; color: #00aaff !important; }
    .stat { background: rgb(0 0 0 / 51%); }
    .stat-value { font-size: 24px !important; }
    .stat-text { font-size: 15px !important; }
    .content-section p { font-size: 12px !important; }
    .footer-menu li a, .footer-extra-links li a { font-size: 12px !important; }
    .disclaimer { font-size: 9px !important; }
    .menu-toggle { display: none !important; }
    .share-menu { right: 6px !important; gap: 10px !important; }
    .share-link { width: 24px !important; height: 24px !important; }
}