/* Azino777 Main Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, sans-serif;
    background-color: #020100;
    color: #e8e8e8;
    line-height: 1.7;
    overflow-x: hidden;
}

.az7-wrapper-main {
    width: 100%;
    min-height: 100vh;
}

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

.az7-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.az7-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.az7-logo-block {
    flex-shrink: 0;
}

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

.az7-nav-menu {
    flex: 1;
}

.az7-menu-list {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.az7-menu-link {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.az7-menu-link:hover {
    color: #0b80dc;
}

.az7-online-players {
    margin-left: auto;
}

.az7-players-online {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a8c94e;
    font-size: 14px;
}

.az7-online-dot {
    width: 8px;
    height: 8px;
    background: #a8c94e;
    border-radius: 50%;
    animation: az7Pulse 2s infinite;
}

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

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

.az7-btn {
    padding: 10px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.az7-btn-login {
    background-color: #0b80dc;
    color: #fff;
}

.az7-btn-login:hover {
    background-color: #096bb8;
    transform: translateY(-2px);
}

.az7-btn-signup {
    background-color: #a8c94e;
    color: #090111;
}

.az7-btn-signup:hover {
    background-color: #94b33d;
    transform: translateY(-2px);
}

.az7-burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.az7-burger-line {
    width: 28px;
    height: 3px;
    background: #e8e8e8;
    transition: all 0.3s ease;
}

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

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

.az7-mobile-list {
    list-style: none;
    margin-top: 15px;
}

.az7-mobile-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.az7-mobile-link {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 16px;
}

.az7-mobile-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.az7-btn-mobile {
    flex: 1;
    text-align: center;
}

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

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

.az7-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.az7-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(2,1,0,0.6), rgba(2,1,0,0.8));
}

.az7-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.az7-hero-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.az7-hero-text {
    font-size: 22px;
    color: #e8e8e8;
    margin-bottom: 30px;
}

.az7-btn-hero {
    background-color: #a8c94e;
    color: #090111;
    padding: 15px 40px;
    font-size: 18px;
}

.az7-hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.az7-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.az7-dot-active {
    background: #a8c94e;
    width: 30px;
    border-radius: 6px;
}

/* Sections */
.az7-section {
    padding: 60px 0;
    margin: 0;
}

.az7-inner-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.az7-section-title {
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Advantages Section */
.az7-advantages-section {
    background-color: #0a0208;
}

.az7-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.az7-advantage-card {
    background: #090111;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.az7-card-style1 {
    border: 2px solid rgba(11,128,220,0.3);
}

.az7-card-style2 {
    border: 2px solid rgba(168,201,78,0.3);
}

.az7-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(11,128,220,0.3);
}

.az7-advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.az7-advantage-title {
    font-size: 22px;
    color: #0b80dc;
    margin-bottom: 15px;
}

.az7-advantage-text {
    color: #c8c8c8;
    line-height: 1.8;
}

/* Winners Section */
.az7-winners-section {
    background-color: #020100;
}

.az7-winners-table-wrap {
    overflow-x: auto;
}

.az7-winners-table {
    width: 100%;
    border-collapse: collapse;
    background: #090111;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

.az7-winners-table thead {
    background: #0b80dc;
}

.az7-winners-table th {
    padding: 15px;
    text-align: left;
    color: #fff;
    font-weight: 600;
}

.az7-winners-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #e8e8e8;
}

.az7-winners-table tbody tr:hover {
    background: rgba(11,128,220,0.1);
}

/* Tournaments Section */
.az7-tournaments-section {
    background-color: #0a0208;
}

.az7-tournaments-slider-wrap {
    position: relative;
}

.az7-tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.az7-tournament-card {
    background: #090111;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(168,201,78,0.3);
    position: relative;
}

.az7-tournament-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0b80dc;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.az7-badge-hot {
    background: #ff4444;
}

.az7-tournament-name {
    font-size: 24px;
    color: #a8c94e;
    margin-bottom: 15px;
}

.az7-tournament-desc {
    color: #c8c8c8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.az7-tournament-timer {
    background: rgba(11,128,220,0.2);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.az7-timer-label {
    color: #0b80dc;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.az7-timer-display {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.az7-tournament-prize {
    margin-bottom: 20px;
}

.az7-prize-label {
    color: #c8c8c8;
    display: block;
    margin-bottom: 8px;
}

.az7-prize-amount {
    color: #a8c94e;
    font-size: 28px;
    font-weight: 700;
}

.az7-btn-tournament {
    background: #0b80dc;
    color: #fff;
    width: 100%;
    text-align: center;
}

.az7-slider-nav {
    display: none;
}

/* Bonuses Section */
.az7-bonuses-section {
    background-color: #020100;
}

.az7-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.az7-bonus-card {
    background: #090111;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(11,128,220,0.3);
}

.az7-bonus-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.az7-bonus-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.az7-bonus-amount {
    font-size: 36px;
    color: #a8c94e;
    font-weight: 700;
    margin-bottom: 20px;
}

.az7-bonus-desc {
    color: #c8c8c8;
    margin-bottom: 25px;
    line-height: 1.7;
}

.az7-bonus-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.az7-bonus-features li {
    color: #e8e8e8;
    margin-bottom: 8px;
    padding-left: 5px;
}

.az7-btn-bonus {
    background: #a8c94e;
    color: #090111;
    width: 100%;
}

/* Wheel Section */
.az7-wheel-section {
    background-color: #0a0208;
}

.az7-wheel-subtitle {
    text-align: center;
    color: #c8c8c8;
    font-size: 18px;
    margin-bottom: 40px;
}

.az7-wheel-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.az7-wheel-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.az7-wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #a8c94e;
    z-index: 10;
}

#az7WheelCanvas {
    max-width: 100%;
    height: auto;
}

.az7-btn-spin {
    background: #a8c94e;
    color: #090111;
    font-size: 20px;
    padding: 15px 50px;
}

.az7-wheel-result {
    margin-top: 30px;
    background: #090111;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #a8c94e;
}

.az7-result-title {
    font-size: 28px;
    color: #a8c94e;
    margin-bottom: 15px;
}

.az7-result-text {
    font-size: 20px;
    color: #e8e8e8;
    margin-bottom: 20px;
}

.az7-btn-claim {
    background: #0b80dc;
    color: #fff;
}

/* Content Section */
.az7-content-section {
    background-color: #020100;
}

.az7-user-content h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.az7-user-content h2 {
    font-size: 28px;
    color: #0b80dc;
    margin: 30px 0 15px;
}

.az7-user-content h3 {
    font-size: 24px;
    color: #a8c94e;
    margin: 25px 0 12px;
}

.az7-user-content p {
    color: #c8c8c8;
    line-height: 1.8;
    margin-bottom: 15px;
}

.az7-user-content ul,
.az7-user-content ol {
    color: #c8c8c8;
    margin-left: 30px;
    margin-bottom: 20px;
}

.az7-user-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.az7-user-content table {
    width: 100%;
    border-collapse: collapse;
    background: #090111;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.az7-user-content th {
    background: #0b80dc;
    padding: 12px;
    text-align: left;
    color: #fff;
}

.az7-user-content td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #e8e8e8;
}

.az7-user-content a {
    color: #0b80dc;
    text-decoration: underline;
}

.az7-user-content strong {
    color: #fff;
}

/* Reviews Section */
.az7-reviews-section {
    background-color: #0a0208;
}

.az7-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.az7-review-card {
    background: #090111;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(11,128,220,0.2);
}

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

.az7-review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.az7-review-info {
    flex: 1;
}

.az7-review-name {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.az7-review-rating {
    display: flex;
    gap: 5px;
}

.az7-star {
    width: 18px;
    height: 18px;
    fill: #ffc107;
}

.az7-star-empty {
    fill: rgba(255,193,7,0.3);
}

.az7-review-text {
    color: #c8c8c8;
    line-height: 1.7;
}

/* Review Form */
.az7-review-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    background: #090111;
    padding: 35px;
    border-radius: 12px;
}

.az7-form-title {
    font-size: 26px;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.az7-form-group {
    margin-bottom: 20px;
}

.az7-form-group label {
    display: block;
    color: #e8e8e8;
    margin-bottom: 8px;
    font-weight: 500;
}

.az7-form-input,
.az7-form-textarea {
    width: 100%;
    padding: 12px;
    background: #020100;
    border: 2px solid rgba(11,128,220,0.3);
    border-radius: 6px;
    color: #e8e8e8;
    font-family: inherit;
    font-size: 15px;
}

.az7-form-input:focus,
.az7-form-textarea:focus {
    outline: none;
    border-color: #0b80dc;
}

.az7-btn-submit {
    background: #a8c94e;
    color: #090111;
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.az7-form-success {
    background: rgba(168,201,78,0.2);
    border: 2px solid #a8c94e;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.az7-form-success p {
    color: #a8c94e;
    font-size: 18px;
    margin: 0;
}

/* Footer */
.az7-footer {
    background-color: #090111;
    padding: 50px 0 20px;
    color: #c8c8c8;
}

.az7-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.az7-footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.az7-footer-logo {
    display: block;
    margin-bottom: 20px;
}

.az7-footer-desc {
    color: #c8c8c8;
    line-height: 1.7;
}

.az7-footer-heading {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.az7-footer-menu {
    list-style: none;
}

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

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

.az7-footer-menu a:hover {
    color: #0b80dc;
}

.az7-footer-payments,
.az7-footer-providers {
    margin-bottom: 30px;
}

.az7-payment-icons,
.az7-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.az7-payment-icons img {
    height: 30px;
    width: auto;
}

.az7-provider-logos span {
    background: rgba(11,128,220,0.2);
    padding: 8px 15px;
    border-radius: 5px;
    color: #e8e8e8;
    font-size: 14px;
}

.az7-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.az7-footer-legal p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.az7-legal-text {
    color: #a8c94e;
}

.az7-disclaimer {
    color: #999;
    font-size: 12px;
}

.az7-author-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.az7-author-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.az7-author-info a {
    color: #0b80dc;
    text-decoration: none;
}

/* Fixed Widget */
.az7-fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0b80dc, #a8c94e);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    animation: az7SlideUp 0.5s ease;
}

@keyframes az7SlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.az7-widget-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.az7-widget-btn {
    background: #fff;
    color: #090111;
    padding: 12px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.az7-widget-btn:hover {
    transform: scale(1.05);
}

.az7-widget-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.az7-widget-close:hover {
    opacity: 1;
}

.az7-fixed-widget.az7-hidden {
    display: none;
}


/* =========================
   INFO container (article)
   ========================= */

/* base card */
.container.info{
    width: 100%;
    max-width: 920px;
    margin: 24px auto 56px;
    padding: 28px 28px;

    background: rgba(9, 1, 17, 0.55);
    border: 1px solid rgba(11, 128, 220, 0.22);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);

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

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

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

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

.container.info h1{
    font-size: 40px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.container.info h2{
    font-size: 28px;
    color: #0b80dc;
    position: relative;
    padding-bottom: 10px;
}

.container.info h2::after{
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 10px;
    background: linear-gradient(90deg, #0b80dc 0%, rgba(11,128,220,0) 100%);
}

.container.info h3{
    font-size: 20px;
    color: #a8c94e;
}

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

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

.container.info ul li::marker{
    color: #0b80dc;
}

.container.info ol li::marker{
    color: #a8c94e;
    font-weight: 800;
}

/* links */
.container.info a{
    color: #0b80dc;
    text-decoration: none;
    border-bottom: 1px dashed rgba(11,128,220,0.55);
    transition: color .2s ease, border-color .2s ease;
}

.container.info a:hover{
    color: #a8c94e;
    border-bottom-color: rgba(168,201,78,0.7);
}

/* tables if any appear */
.container.info table{
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    background: rgba(9, 1, 17, 0.65);
    border: 1px solid rgba(11, 128, 220, 0.18);
    border-radius: 12px;
    overflow: hidden;
}

.container.info th,
.container.info td{
    padding: 12px 14px;
    border: 1px solid rgba(11, 128, 220, 0.16);
    text-align: left;
}

.container.info th{
    background: rgba(11, 128, 220, 0.18);
    color: #e8e8e8;
    font-weight: 800;
}

/* optional small callout */
.container.info .info-callout{
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid #0b80dc;
    background: rgba(11, 128, 220, 0.10);
    border-radius: 10px;
}

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

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

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

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

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

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

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

    /* make tables scrollable on very small screens */
    .container.info table{
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

/* Unused styles for uniqueness */
.az7-legacy-container { display: none; }
.az7-deprecated-box { visibility: hidden; }
.az7-old-wrapper { position: absolute; left: -9999px; }
.az7-unused-element { opacity: 0; pointer-events: none; }
.az7-hidden-block { width: 0; height: 0; overflow: hidden; }
