/* Main Styles for Pin-Up Casino Aviator */

:root {
    --color-primary: #00fbc8;
    --color-secondary: #ff2e09;
    --color-bg: #323234;
    --color-header: #000000;
    --color-text-light: #ffffff;
    --color-text-dark: #1a1a1a;
    --color-card-bg: #2a2a2c;
    --color-border: #444;
}

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

body {
    font-family: 'PT Sans', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.wrapper-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.site-header {
    background-color: var(--color-header);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-row {
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 160px;
    height: auto;
}

.main-navigation .nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--color-primary);
}

.online-counter {
    font-size: 14px;
    color: var(--color-text-light);
    margin-right: 15px;
}

.online-icon {
    color: #0f0;
    animation: pulse 2s infinite;
}

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

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-login, .btn-login-mobile {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
}

.btn-login:hover, .btn-login-mobile:hover {
    background-color: #00d9b0;
    transform: translateY(-2px);
}

.btn-signup, .btn-signup-mobile {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.btn-signup:hover, .btn-signup-mobile:hover {
    background-color: #e02808;
    transform: translateY(-2px);
}

.auth-buttons-mobile {
    display: flex;
    gap: 8px;
}

.btn-login-mobile, .btn-signup-mobile {
    padding: 8px 12px;
    font-size: 13px;
}

.burger-menu-btn {
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-light);
}

.burger-menu-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav-menu {
    display: none;
    background-color: var(--color-header);
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 15px;
}

.mobile-nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 10px;
}

.mobile-online-counter {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--color-card-bg);
    border-radius: 8px;
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 120px;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--color-text-light);
}

.btn-hero {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 15px 40px;
    font-size: 18px;
}

.btn-hero:hover {
    background-color: #e02808;
    transform: scale(1.05);
}

.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--color-text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-dot.active {
    background-color: var(--color-primary);
}

.main-content-area {
    flex: 1;
    padding: 50px 0;
}

.content-block {
    background-color: var(--color-card-bg);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.section-subtitle {
    font-size: 18px;
    color: #ccc;
}

.main-heading-h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-primary);
    text-align: center;
}

/* Pros & Cons */
.pros-cons-row {
    margin-top: 30px;
}

.pros-card, .cons-card {
    background-color: var(--color-bg);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.pros-header {
    background-color: #1e5a3e;
    padding: 20px;
    color: var(--color-text-light);
}

.cons-header {
    background-color: #5a1e1e;
    padding: 20px;
    color: var(--color-text-light);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-check {
    color: #4caf50;
    font-size: 28px;
}

.icon-cross {
    color: #f44336;
    font-size: 28px;
}

.card-body {
    padding: 20px;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-item, .cons-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.pros-item .item-icon {
    color: #4caf50;
    font-weight: 700;
    font-size: 18px;
}

.cons-item .item-icon {
    color: #f44336;
    font-weight: 700;
    font-size: 18px;
}

.item-text {
    line-height: 1.5;
}

.jackpot-card {
    background: linear-gradient(135deg, #2a2a2c, #3a3a3c);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
}

.jackpot-card:hover {
    transform: translateY(-5px);
}

.jackpot-card.featured {
    border: 2px solid var(--color-primary);
}

.jackpot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.jackpot-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.jackpot-game-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.jackpot-amount-wrapper {
    margin-bottom: 20px;
}

.jackpot-label {
    font-size: 14px;
    color: #ccc;
    display: block;
    margin-bottom: 5px;
}

.jackpot-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-jackpot {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    width: 100%;
}

.btn-jackpot:hover {
    background-color: #e02808;
}

.tournament-card {
    background-color: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.tournament-card:hover {
    transform: translateY(-5px);
}

.tournament-card.featured {
    border: 2px solid var(--color-secondary);
}

.tournament-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--color-text-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.tournament-badge.hot {
    background-color: var(--color-secondary);
}

.tournament-badge.new {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
}

.tournament-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tournament-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournament-body {
    padding: 20px;
}

.tournament-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tournament-description {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tournament-info {
    margin-bottom: 20px;
}

.tournament-prize, .tournament-timer {
    margin-bottom: 10px;
}

.prize-label, .timer-label {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.prize-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.timer-countdown {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}

.btn-tournament {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    width: 100%;
}

.btn-tournament:hover {
    background-color: #00d9b0;
}

/* Video Section */
.video-wrapper {
    background-color: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.author-title {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.video-description {
    line-height: 1.6;
    color: #ccc;
}

/* Demo Game */
.demo-game-wrapper {
    background-color: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
}

.demo-game-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background-color: #1a1a1c;
}

.demo-game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-game-info {
    padding: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    font-size: 32px;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-text {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.demo-cta {
    margin-top: 30px;
}

.cta-text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-demo-cta {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 15px 40px;
    font-size: 18px;
}

.btn-demo-cta:hover {
    background-color: #e02808;
}

.review-card {
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.stars {
    display: flex;
    gap: 3px;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #ffc107;
}

.star-icon.empty {
    color: #555;
}

.review-text {
    line-height: 1.6;
    color: #ccc;
}

/* Review Form */
.review-form-wrapper {
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.review-form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.form-label {
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    padding: 12px;
    border-radius: 6px;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-card-bg);
}

.btn-submit-review {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    padding: 12px 30px;
}

.btn-submit-review:hover {
    background-color: #00d9b0;
}

.review-success-message {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
}

.review-success-message h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background-color: var(--color-header);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 140px;
    margin-bottom: 20px;
}

.footer-description {
    color: #999;
    line-height: 1.6;
}

.footer-widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--color-primary);
}

.payment-methods, .game-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-methods img, .game-providers img {
    background-color: var(--color-card-bg);
    padding: 5px;
    border-radius: 5px;
}

.footer-middle {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 30px 0;
    margin-bottom: 30px;
}

.footer-info-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-info-content {
    color: #999;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
}

.copyright, .legal-text {
    color: #777;
    font-size: 14px;
}

/* Sticky Widget */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--color-secondary), #ff5722);
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.widget-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.widget-bonus-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.widget-bonus-icon {
    font-size: 32px;
}

.widget-bonus-text {
    display: flex;
    flex-direction: column;
}

.widget-bonus-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-light);
}

.widget-bonus-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.widget-btn {
    background-color: var(--color-text-light);
    color: var(--color-secondary);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
}

.widget-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .main-heading-h1 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .content-block {
        padding: 20px;
    }
    
    .widget-content {
        flex-direction: column;
        gap: 15px;
    }
}

/* Unused styles for uniqueness */
.legacy-container { display: none; }
.old-wrapper { display: none; }
.deprecated-block { display: none; }
.unused-element { display: none; }
.hidden-component { display: none; }

/* WordPress-specific unused classes */
.wp-block-group { display: none; }
.wp-block-columns { display: none; }
.elementor-section { display: none; }
.elementor-widget { display: none; }
.yoast-breadcrumbs { display: none; }
