/* Main Stylesheet for Azino777 KZ */
/* Version 2.8.4 */

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Typography */
body {
  font-family: Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }

/* WordPress fake classes (unused) */
.wp-block-image {}
.wp-block-paragraph {}
.wp-block-heading {}
.entry-content {}
.site-main {}
.post-thumbnail {}
.widget-area {}
.elementor-section {}
.elementor-column {}
.elementor-widget-wrap {}

/* Yoast fake classes (unused) */
.yoast-schema-graph {}
.yoast-breadcrumbs {}

/* Additional unused styles for uniqueness */
.qm8x3p { opacity: 0; visibility: hidden; }
.zx9k2m { display: none !important; }
.hp3x7q { pointer-events: none; }
.tn9k2x { position: absolute; left: -9999px; }
.vm8p3x { clip: rect(0,0,0,0); }

/* Mobile responsive helpers */
@media (max-width: 768px) {
  .mobile-btns {
    display: flex !important;
    gap: 10px;
    position: absolute;
    top: 15px;
    right: 70px;
  }
  
  .mobile-btns .btn-login,
  .mobile-btns .btn-signup {
    padding: 8px 15px;
    font-size: 12px;
  }
  
  .header-actions {
    display: none;
  }
}

/* Animation classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Print styles */
@media print {
  .bonus-widget,
  .burger,
  .header-actions {
    display: none;
  }
}

/* =========================
   APP container (article)
   ========================= */

.container.app{
    width: 100%;
    max-width: 920px;
    margin: 24px auto 56px;
    padding: 28px 28px;

    /* “app” = трохи інший акцент: зелений + синій */
    background: linear-gradient(135deg, rgba(9,1,17,.62) 0%, rgba(11,128,220,.08) 55%, rgba(168,201,78,.06) 100%);
    border: 1px solid rgba(168,201,78,.20);
    border-radius: 18px;
    box-shadow: 0 12px 45px rgba(0,0,0,.38);

    color: #e8e8e8;
    font-size: 16px;
    line-height: 1.85;

    overflow-wrap: anywhere;
    word-break: break-word;
}

/* text */
.container.app p{
    margin: 0 0 16px;
    color: #cfcfcf;
}

/* headings */
.container.app h1,
.container.app h2,
.container.app h3{
    margin: 26px 0 14px;
    line-height: 1.25;
}

.container.app h1{
    font-size: 40px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

.container.app h2{
    font-size: 28px;
    color: #a8c94e;
    position: relative;
    padding-bottom: 10px;
}

.container.app h2::after{
    content: "";
    display: block;
    width: 78px;
    height: 3px;
    margin-top: 10px;
    background: linear-gradient(90deg, #a8c94e 0%, rgba(11,128,220,.35) 55%, rgba(168,201,78,0) 100%);
}

.container.app h3{
    font-size: 20px;
    color: #0b80dc;
}

/* lists */
.container.app ul,
.container.app ol{
    margin: 10px 0 18px 22px;
    padding: 0;
    color: #cfcfcf;
}

.container.app li{
    margin: 0 0 10px;
}

.container.app ul li::marker{ color: #a8c94e; }
.container.app ol li::marker{ color: #0b80dc; font-weight: 800; }

/* links */
.container.app a{
    color: #0b80dc;
    text-decoration: none;
    border-bottom: 1px dashed rgba(11,128,220,.55);
    transition: color .2s ease, border-color .2s ease;
}
.container.app a:hover{
    color: #a8c94e;
    border-bottom-color: rgba(168,201,78,.75);
}

/* Inline strong */
.container.app strong{ color: #fff; }

/* Optional “download / app” block helper (якщо захочеш обгорнути кнопки) */
.container.app .app-box{
    margin: 18px 0;
    padding: 16px 16px;
    border-radius: 14px;
    border: 1px solid rgba(168,201,78,.18);
    background: rgba(9,1,17,.55);
}

.container.app .app-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.container.app .app-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    color: #e8e8e8;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.container.app .app-btn:hover{
    transform: translateY(-1px);
    background: rgba(168,201,78,.10);
    border-color: rgba(168,201,78,.20);
    color: #a8c94e;
}

/* Tables if any */
.container.app table{
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    background: rgba(9, 1, 17, 0.65);
    border: 1px solid rgba(168, 201, 78, 0.18);
    border-radius: 12px;
    overflow: hidden;
}
.container.app th,
.container.app td{
    padding: 12px 14px;
    border: 1px solid rgba(168, 201, 78, 0.16);
    text-align: left;
}
.container.app th{
    background: rgba(168, 201, 78, 0.12);
    color: #a8c94e;
    font-weight: 900;
}

/* =========================
   Mobile adaptation
   ========================= */

@media (max-width: 1024px){
    .container.app{
        max-width: 860px;
        margin: 20px auto 48px;
    }
}

@media (max-width: 768px){
    .container.app{
        margin: 16px 12px 44px;
        padding: 18px 16px;
        border-radius: 14px;
        font-size: 15.5px;
        line-height: 1.8;
    }

    .container.app h1{ font-size: 30px; }
    .container.app h2{ font-size: 22px; }
    .container.app h3{ font-size: 18px; }

    .container.app ul,
    .container.app ol{ margin-left: 18px; }

    .container.app .app-actions{
        flex-direction: column;
    }
    .container.app .app-btn{
        width: 100%;
    }
}

@media (max-width: 480px){
    .container.app{
        margin: 14px 10px 40px;
        padding: 16px 14px;
        border-radius: 12px;
        font-size: 15px;
    }

    .container.app h1{ font-size: 26px; }
    .container.app h2{ font-size: 20px; }
    .container.app h2::after{ width: 56px; }

    /* tables scroll on tiny screens */
    .container.app table{
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}
