/*
 Theme Name: Binary Option Info
 Theme URI: https://binary-option.info/
 Description: Theme for reviewing binary options brokers
 Version: 2.15
*/
@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;
    color: #f7c948;
}

.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-subtitle {
    font-size: 14px;
    color: #00aaff;
    margin-top: 5px;
}

.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: 20px 15px 40px;
    background: url('/wp-content/uploads/poc/fon-pocketoption.webp') 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: 20px;
    border-radius: 12px;
}

.promo-inner {
    max-width: 900px;
    margin: 0 auto;
}

.promo-title {
    font-size: 48px;
    color: #f7c948;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo-title-top {
    font-size: 0.8em;
    color: #00aaff;
}

.promo-title-main {
    font-size: 1.2em;
    font-weight: bold;
}

.promo-text {
    font-size: 20px;
    margin: 20px 0 30px;
    padding: 20px;
    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: 10px;
}

.promo-text b {
    color: #f7c948;
}

.btn {
    padding: 10px 20px;
    background: #e4b040;
    color: #000d1f;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    transition: transform 0.3s, background 0.3s, color 0.3s;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    line-height: 1.2;
}

.btn:hover {
    background: #f7c948;
    color: #000d1f;
    transform: translateY(-2px);
}

.broker-btn {
    background: #00aaff;
}

.broker-btn:hover {
    background: #1bbcff;
}

.review-btn {
    background: #e4b040;
}

.review-btn:hover {
    background: #f7c948;
}

.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.promo-stats-intro {
    font-size: 22px;
    color: #f7c948;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease forwards 0.5s;
    text-align: center;
}

.broker-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.broker-table th, .broker-table td {
    padding: 10px;
    border: 1px solid #e4b040;
    text-align: center;
}

.broker-table th {
    background: #001a3d;
    color: #f7c948;
}

.broker-table tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

.content-section {
    padding: 40px 15px;
    background: #000d1f;
}

.footer {
    background: #000d1f;
    padding: 40px 15px;
    border-top: 3px solid #e4b040;
}

.footer .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-links {
    grid-column: 1;
}

.footer-menu, .footer-extra-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-menu li a, .footer-extra-links li a {
    color: #e4b040;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu li a:hover, .footer-extra-links li a:hover {
    color: #f7c948;
}

.share-menu {
    position: fixed;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.share-link {
    width: 36px;
    height: 36px;
    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-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: 12px;
    color: #ccc;
    margin-top: 15px;
}

.disclaimer {
    grid-column: 1 / -1;
    font-size: 10px;
    color: #999;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.footer-counter {
    grid-column: 1 / -1;
    margin-top: 15px;
    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: 36px; }
    .promo-text { font-size: 18px; }
    .broker-table { font-size: 13px; }
}

@media screen and (max-width: 768px) {
    .header .wrap { flex-direction: column; gap: 10px; }
    .lgtext { font-size: 24px; }
    .logo-subtitle { font-size: 11px; }
    .menu-toggle { display: block; }
    .nav-menu { 
        display: none; 
        flex-direction: column; 
        width: 100%; 
        background: #001a3d; 
        padding: 15px; 
    }
    .nav-menu.active { display: flex; }
    .nav-menu li a { font-size: 12px; }
    .promo { padding: 15px 10px 30px; }
    .promo-content { padding: 15px; }
    .promo-inner { max-width: 100%; }
    .promo-title { font-size: 20px; }
    .promo-title-top { font-size: 0.9em; }
    .promo-title-main { font-size: 1.3em; }
    .promo-text { font-size: 15px; padding: 12px 15px; margin: 15px auto; max-width: 100%; }
    .promo-stats-intro { font-size: 17px; }
    .broker-table thead { display: none; }
    .broker-table tr { display: block; margin-bottom: 15px; border: 1px solid #e4b040; padding: 10px; border-radius: 8px; background: rgba(0, 0, 0, 0.6); }
    .broker-table td { 
        display: block; 
        text-align: right; 
        position: relative; 
        padding: 8px 10px 8px 50%; 
        border: none; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    }
    .broker-table td[data-label=""] { 
        text-align: center; 
        font-size: 18px; 
        color: #f7c948; 
        font-weight: bold; 
        padding: 10px; 
        border-bottom: none; 
    }
    .broker-table td:before { 
        content: attr(data-label); 
        position: absolute; 
        left: 10px; 
        width: calc(50% - 20px); 
        padding-right: 10px; 
        text-align: left; 
        font-weight: bold; 
        color: #f7c948; 
    }
    .broker-table td[data-label=""]:before { 
        content: none; 
    }
    .broker-table td.action-buttons { 
        display: flex; 
        justify-content: center; 
        padding: 10px; 
        border-bottom: none; 
    }
    .btn { 
        padding: 10px 14px; 
        font-size: 13px; 
        min-width: 90px; 
        line-height: 1.2; 
    }
    .action-buttons { 
        flex-wrap: wrap; 
        gap: 12px; 
        justify-content: center; 
        flex-direction: row; 
    }
    .share-menu { right: 6px; gap: 8px; }
    .share-link { width: 28px; height: 28px; }
}

@media screen and (max-width: 480px) {
    .lgtext { font-size: 20px; }
    .logo-subtitle { font-size: 10px; }
    .promo-title { font-size: 18px; }
    .promo-title-top { font-size: 0.8em; }
    .promo-title-main { font-size: 1.2em; }
    .promo-text { font-size: 14px; padding: 10px 12px; margin: 12px