/*
Theme Name: Wexbiz Games Ultimate
Description: תבנית גיימינג מתקדמת ומודרנית לאתר Wexbiz Games עם עיצוב רספונסיבי מושלם
Author: Wexbiz Games Team
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wexbiz-games
Tags: gaming, responsive, modern, rtl, hebrew, neon, dark-theme, mobile-friendly
*/

/* 
 * Additional Theme Styles
 * הסטיילים הראשיים נמצאים בתוך קובץ התבנית
 * כאן נוספים רק סגנונות נוספים והתאמות
 */

/* טיפוגרפיה עברית מתקדמת */
.hebrew-text {
    font-family: 'Heebo', Arial, sans-serif;
    direction: rtl;
    text-align: right;
}

/* אפקטים נוספים לטעינה */
.loading-animation {
    animation: pulse 2s infinite;
}

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

/* מדיה קוורי נוספים */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
    }
}

/* נגישות משופרת */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* אפקטים מתקדמים */
.glass-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* אנימציות מתקדמות */
.bounce-in {
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    from {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* סגנונות הדפסה */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* קישורים מתקדמים */
a {
    text-decoration-thickness: 1px !important;
    text-underline-offset: .1em;
}

/* סגנונות פוקוס */
:where(.wp-site-blocks *:focus) {
    outline-width: 2px;
    outline-style: solid;
}

/* התאמות לטקסט */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
    text-wrap: pretty;
}

/* עיצוב לקישור "קרא עוד" */
.more-link {
    display: block;
}
