/* Pin-Up Site Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: #323234;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

/* Header */
.header-main {
    background: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.logo-img {
    max-width: 150px;
    height: auto;
    display: block;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00fbc8;
}

.online-counter {
    margin-right: 20px;
    font-size: 14px;
}

.online-label {
    color: #aaa;
    margin-right: 5px;
}

.online-number {
    color: #00fbc8;
    font-weight: 700;
}

.header-btns {
    display: flex;
    gap: 10px;
}

.btn-login {
    background: #00fbc8;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-login:hover {
    background: #00d4ad;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 251, 200, 0.3);
}

.btn-signup {
    background: #ff2e09;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-signup:hover {
    background: #e02807;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 46, 9, 0.3);
}

.burger-btn {
    background: transparent;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

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

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

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

.mobile-menu {
    display: none;
    background: #000;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

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

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

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

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #00fbc8;
}

.mobile-online {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Hero */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/pinup-banner.jpg') center/cover no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text {
    font-size: 24px;
    margin: 0 0 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.btn-hero {
    background: #ff2e09;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 46, 9, 0.4);
}

.btn-hero:hover {
    background: #e02807;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 46, 9, 0.6);
}

/* Sections */
.container-fluid {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px;
    text-align: center;
    color: #fff;
}

/* Jackpot Section */
.jackpot-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1c 0%, #323234 100%);
}

.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.jackpot-card {
    background: linear-gradient(135deg, #2a2a2c 0%, #1f1f21 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    border: 2px solid #00fbc8;
}

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

.jackpot-name {
    font-size: 20px;
    color: #00fbc8;
    margin-bottom: 15px;
    font-weight: 700;
}

.jackpot-amount {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
}

/* Winners Section */
.winners-section {
    padding: 60px 0;
    background: #323234;
}

.winners-table-wrap {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 10px;
}

.winners-table {
    width: 100%;
    background: #2a2a2c;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.winners-table thead {
    background: #1a1a1c;
}

.winners-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #00fbc8;
    border-bottom: 2px solid #00fbc8;
}

.winners-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #3a3a3c;
}

.winners-table tbody tr:hover {
    background: #3a3a3c;
}

/* App Section */
.app-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1c 0%, #323234 100%);
}

.app-info-wrap {
    margin-top: 40px;
}

.app-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    background: #2a2a2c;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.app-table td {
    padding: 15px;
    border-bottom: 1px solid #3a3a3c;
}

.app-table tr:last-child td {
    border-bottom: none;
}

.app-table td:first-child {
    width: 30%;
    background: #1a1a1c;
}

.app-download-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn-store img {
    height: 50px;
    width: auto;
}

.app-btn-apk {
    background: #ff2e09;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.app-btn-apk:hover {
    background: #e02807;
    transform: translateY(-2px);
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background: #323234;
}

.video-wrap {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-wrap iframe {
    width: 100%;
    height: 500px;
    display: block;
}

/* Slot Game Section */
.slot-game-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1c 0%, #323234 100%);
}

.slot-game-wrap {
    margin-top: 40px;
}

.slot-machine {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2a2a2c 0%, #1f1f21 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #00fbc8;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.reel {
    width: 100px;
    height: 100px;
    background: #1a1a1c;
    border: 3px solid #00fbc8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5);
}

.btn-spin {
    width: 100%;
    background: #ff2e09;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-spin:hover:not(:disabled) {
    background: #e02807;
    transform: scale(1.05);
}

.btn-spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slot-result {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    min-height: 60px;
}

.slot-result.win {
    color: #00fbc8;
    font-weight: 700;
}

.slot-result.lose {
    color: #ff2e09;
}

.btn-claim-bonus {
    display: inline-block;
    margin-top: 10px;
    background: #ff2e09;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-claim-bonus:hover {
    background: #e02807;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: #323234;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    background: #2a2a2c;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-heading {
    font-size: 36px;
    margin: 0 0 30px;
    color: #fff;
}

.text-content h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: #00fbc8;
}

.text-content h3 {
    font-size: 24px;
    margin: 25px 0 12px;
    color: #fff;
}

.text-content p {
    margin: 15px 0;
    line-height: 1.8;
}

.text-content ul,
.text-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.text-content li {
    margin: 8px 0;
    line-height: 1.6;
}

.text-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.text-content table th,
.text-content table td {
    padding: 12px;
    border: 1px solid #3a3a3c;
    text-align: left;
}

.text-content table th {
    background: #1a1a1c;
    color: #00fbc8;
    font-weight: 700;
}

.text-content a {
    color: #00fbc8;
    text-decoration: underline;
}

.text-content a:hover {
    color: #00d4ad;
}

/* Author Section */
.author-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1c 0%, #323234 100%);
}

.author-card {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    gap: 30px;
    background: #2a2a2c;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.author-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00fbc8;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 24px;
    margin: 0 0 10px;
    color: #00fbc8;
}

.author-bio {
    margin: 0 0 15px;
    line-height: 1.6;
}

.author-social {
    display: flex;
    gap: 15px;
}

.social-link-author {
    background: #00fbc8;
    color: #000;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.social-link-author:hover {
    background: #00d4ad;
}

/* Footer */
.footer-main {
    background: #000000;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 0;
}

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

.footer-heading {
    font-size: 20px;
    margin: 0 0 20px;
    color: #00fbc8;
}

.footer-desc {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

.footer-menu-link:hover {
    color: #00fbc8;
}

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

.footer-contact-item {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-payments,
.footer-providers {
    margin: 40px 0;
}

.payments-grid,
.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.payment-logo,
.provider-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.payment-logo:hover,
.provider-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.footer-legal {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.legal-text {
    text-align: center;
    color: #888;
    font-size: 14px;
}

.legal-info,
.legal-warning,
.legal-disclaimer {
    margin: 10px 0;
}

.footer-links {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 14px;
}

.footer-link {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #00fbc8;
}

/* Fixed Widget */
.fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff2e09 0%, #e02807 100%);
    padding: 15px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

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

.widget-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.widget-btn {
    background: #00fbc8;
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    white-space: nowrap;
}

.widget-btn:hover {
    background: #00d4ad;
    transform: scale(1.05);
}

/* Unused elements for uniqueness */
.elementor-widget-container {
    display: none;
}

.wp-block-columns {
    display: none;
}

.site-header-wrapper {
    display: none;
}

.entry-meta {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-photo {
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 350px;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
    }

    .jackpots-grid {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 25px;
    }

    .main-heading {
        font-size: 28px;
    }

    .video-wrap iframe {
        height: 300px;
    }

    .widget-content {
        flex-direction: column;
        text-align: center;
    }

    .widget-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slot-reels {
        gap: 10px;
    }

    .reel {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .slot-machine {
        padding: 20px;
    }
}

.ydewfs {
    max-width: 980px;
    margin: 48px auto;
    padding: 40px;
    background: linear-gradient(180deg, #2a2a2c 0%, #232325 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    color: #ffffff;
}

.ydewfs h1 {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.ydewfs h2 {
    margin: 36px 0 18px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #00fbc8;
}

.ydewfs h3 {
    margin: 28px 0 14px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
}

.ydewfs p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #e4e4e4;
}

.ydewfs ul,
.ydewfs ol {
    margin: 0 0 22px;
    padding-left: 24px;
    color: #e4e4e4;
}

.ydewfs li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
}

.ydewfs a {
    color: #00fbc8;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.ydewfs a:hover {
    color: #ffffff;
    opacity: 0.9;
}

.ydewfs strong,
.ydewfs b {
    color: #ffffff;
    font-weight: 700;
}

.ydewfs blockquote {
    margin: 28px 0;
    padding: 24px 24px 24px 20px;
    background: rgba(0, 251, 200, 0.06);
    border-left: 4px solid #00fbc8;
    border-radius: 14px;
}

.ydewfs blockquote p {
    margin: 0;
    color: #f0f0f0;
}

.ydewfs table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    background: #1f1f21;
}

.ydewfs thead tr {
    background: #151516;
}

.ydewfs th {
    padding: 16px 18px;
    text-align: left;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #00fbc8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ydewfs td {
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #e4e4e4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ydewfs tbody tr:last-child td {
    border-bottom: none;
}

.ydewfs tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.ydewfs img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.ydewfs hr {
    margin: 32px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
    .ydewfs {
        margin: 36px auto;
        padding: 32px 24px;
        border-radius: 18px;
    }

    .ydewfs h1 {
        font-size: 34px;
    }

    .ydewfs h2 {
        font-size: 27px;
    }

    .ydewfs h3 {
        font-size: 22px;
    }

    .ydewfs p,
    .ydewfs li {
        font-size: 16px;
    }

    .ydewfs th,
    .ydewfs td {
        padding: 14px 14px;
    }
}

@media (max-width: 767px) {
    .ydewfs {
        margin: 28px auto;
        padding: 24px 18px;
        border-radius: 16px;
    }

    .ydewfs h1 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .ydewfs h2 {
        margin: 28px 0 14px;
        font-size: 23px;
    }

    .ydewfs h3 {
        margin: 22px 0 12px;
        font-size: 20px;
    }

    .ydewfs p,
    .ydewfs li {
        font-size: 15px;
        line-height: 1.75;
    }

    .ydewfs ul,
    .ydewfs ol {
        padding-left: 20px;
    }

    .ydewfs blockquote {
        padding: 18px 16px 18px 14px;
        border-radius: 12px;
    }

    .ydewfs table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 12px;
    }

    .ydewfs th,
    .ydewfs td {
        min-width: 180px;
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .ydewfs {
        margin: 20px auto;
        padding: 20px 14px;
    }

    .ydewfs h1 {
        font-size: 24px;
    }

    .ydewfs h2 {
        font-size: 21px;
    }

    .ydewfs h3 {
        font-size: 18px;
    }

    .ydewfs p,
    .ydewfs li,
    .ydewfs td,
    .ydewfs th {
        font-size: 14px;
    }
}

.header-main {
    position: relative;
    z-index: 1000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.burger-btn {
    display: none;
    background: transparent;
    border: 0;
    padding: 6px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s ease;
}

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

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

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    padding: 20px 15px;
    z-index: 999;
}

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

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

.mobile-nav-item + .mobile-nav-item {
    margin-top: 12px;
}

.mobile-nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
}

@media (max-width: 991px) {
    .burger-btn {
        display: flex;
    }

}
