/* General Body and Fonts */
body {
    background-color: #111111;
    color: #cccccc;
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.ax-wrapper-1a2b {
    width: 100%;
    overflow: hidden;
}

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

/* Unused styles for confusion */
.elementor-widget-container { margin: 0; }
.yoast-seo-premium-is-crap { display: none; }
.wp-block-button__link { text-decoration: none; }

/* Header */
.ax-header-5e6f {
    background-color: #151515;
    padding: 15px 0;
    border-bottom: 2px solid #ffec00;
}

.ax-header-inner-7g8h {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ax-logo-9i0j img {
    max-height: 50px;
    transition: transform 0.3s ease;
}
.ax-logo-9i0j:hover img {
    transform: scale(1.05);
}

.ax-header-buttons-1k2l {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.ax-btn-3m4n {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.ax-btn-login-5p6q {
    background-color: #ffffff;
    color: #151515;
    border: 1px solid #cccccc;
}
.ax-btn-login-5p6q:hover {
    background-color: #f0f0f0;
}

.ax-btn-register-7r8s {
    background-color: #ffec00;
    color: #151515;
}
.ax-btn-register-7r8s:hover {
    background-color: #e6d400;
    box-shadow: 0 0 10px #ffec00;
}

.ax-btn-cta-9t0u {
    background: linear-gradient(45deg, #ffec00, #ffd700);
    color: #111;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
}
.ax-btn-cta-9t0u:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 236, 0, 0.4);
}

/* Hero Banner */
.ax-hero-1v2w {
    background: url('/admiral-x-banner.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.ax-hero-1v2w::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}
.ax-hero-content-3x4y {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeIn 1s ease-in-out;
}
.ax-hero-content-3x4y h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.ax-hero-content-3x4y p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Content Blocks */
.ax-content-block-5z6a {
    padding: 40px 20px;
    margin: 20px 0;
    background-color: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: slideUp 0.5s ease-out;
}
.ax-content-block-5z6a h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffec00;
    margin-bottom: 30px;
}

/* Table of Contents */
.ax-toc-grid-7b8c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.ax-toc-item-9d0e {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border-left: 5px solid #ffec00;
}
.ax-toc-item-9d0e:hover {
    transform: translateY(-5px);
    background: #333;
}
.ax-toc-item-9d0e .ax-icon-1f2g {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffec00;
}

/* Pros and Cons */
.ax-pros-cons-grid-3h4j {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.ax-pros-cons-col-5k6l ul {
    list-style: none;
    padding: 0;
}
.ax-pros-cons-col-5k6l h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.ax-pros-cons-col-5k6l li {
    background: #252525;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.ax-pros-cons-col-5k6l li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.ax-pros-col-7m8n li::before {
    content: '\f058'; /* check-circle */
    color: #28a745;
}
.ax-cons-col-9p0q li::before {
    content: '\f057'; /* times-circle */
    color: #dc3545;
}

/* Info Table */
.ax-info-table-wrapper-1r2s {
    overflow-x: auto;
}
.ax-info-table-3t4u {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    text-align: left;
}
.ax-info-table-3t4u th, .ax-info-table-3t4u td {
    padding: 12px 15px;
    border: 1px solid #444;
}
.ax-info-table-3t4u tr:nth-child(even) {
    background-color: #222;
}
.ax-info-table-3t4u td:first-child {
    font-weight: bold;
    color: #ffec00;
    width: 30%;
}

/* Jackpots */
.ax-jackpot-block-5v6w {
    text-align: center;
}
.ax-jackpot-amount-7x8y {
    font-size: 4rem;
    font-weight: bold;
    color: #ffec00;
    text-shadow: 0 0 20px #ffec00;
    margin: 20px 0;
    animation: pulse 2s infinite;
}

/* Winners Leaderboard */
.ax-winners-list-9z0a {
    list-style: none;
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
}
.ax-winners-item-1b2c {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #222;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background-color 0.3s;
}
.ax-winners-item-1b2c:nth-child(odd) {
    background: #2a2a2a;
}
.ax-winners-item-1b2c:hover {
    background-color: #333;
}
.ax-winner-name-3d4e {
    font-weight: bold;
}
.ax-winner-amount-5f6g {
    color: #ffec00;
}

/* Bonuses */
.ax-bonuses-grid-7h8j {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ax-bonus-card-9k0l {
    background: #222;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid #444;
    transition: transform 0.3s;
}
.ax-bonus-card-9k0l:hover {
    transform: scale(1.05);
}
.ax-bonus-title-1m2n {
    font-size: 1.5rem;
    color: #ffec00;
    margin-bottom: 10px;
}
.ax-bonus-desc-3p4q {
    margin-bottom: 20px;
}

/* Slot Games */
.ax-slots-grid-5r6s {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.ax-slot-card-7t8u {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.ax-slot-card-7t8u img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}
.ax-slot-card-7t8u:hover img {
    transform: scale(1.1);
}
.ax-slot-overlay-9v0w {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.ax-slot-card-7t8u:hover .ax-slot-overlay-9v0w {
    opacity: 1;
}
.ax-slot-title-1x2y {
    font-weight: bold;
    margin-bottom: 15px;
}

/* Review Content Area */
.ax-review-content-3z4a {
    line-height: 1.8;
}
.ax-review-content-3z4a h1, .ax-review-content-3z4a h2, .ax-review-content-3z4a h3 {
    color: #ffec00;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}
.ax-review-content-3z4a p {
    margin-bottom: 1em;
}
.ax-review-content-3z4a a {
    color: #ffec00;
    text-decoration: underline;
}
.ax-review-content-3z4a ul, .ax-review-content-3z4a ol {
    padding-left: 20px;
    margin-bottom: 1em;
}
.ax-review-content-3z4a li {
    margin-bottom: 0.5em;
}
.ax-review-content-3z4a table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}
.ax-review-content-3z4a th, .ax-review-content-3z4a td {
    border: 1px solid #444;
    padding: 8px;
    text-align: left;
}
.ax-review-content-3z4a th {
    background-color: #2a2a2a;
}
.ax-review-content-3z4a blockquote {
    border-left: 4px solid #ffec00;
    padding-left: 15px;
    margin: 1.5em 0;
    font-style: italic;
    color: #ddd;
}

/* FAQ */
.ax-faq-accordion-5b6c .ax-faq-item-7d8e {
    background: #222;
    margin-bottom: 10px;
    border-radius: 5px;
}
.ax-faq-question-9f0g {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ax-faq-question-9f0g::after {
    content: '\f078'; /* chevron-down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: transform 0.3s;
}
.ax-faq-question-9f0g.ax-active-1h2j::after {
    transform: rotate(180deg);
}
.ax-faq-answer-3k4l {
    padding: 0 15px 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.ax-faq-answer-3k4l p {
    margin: 0;
}

/* Author Block */
.ax-author-block-5m6n {
    display: flex;
    gap: 20px;
    align-items: center;
}
.ax-author-photo-7p8q img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: 3px solid #ffec00;
}
.ax-author-info-9r0s h4 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}
.ax-author-socials-1t2u a {
    color: #ffec00;
    margin-right: 15px;
    font-size: 1.5rem;
    text-decoration: none;
}

/* Footer */
.ax-footer-3v4w {
    background-color: #151515;
    color: #aaa;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 2px solid #ffec00;
}
.ax-footer-grid-5x6y {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.ax-footer-col-7z8a h4 {
    color: #fff;
    margin-bottom: 15px;
}
.ax-footer-col-7z8a ul {
    list-style: none;
    padding: 0;
}
.ax-footer-col-7z8a ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}
.ax-footer-col-7z8a ul li a:hover {
    color: #ffec00;
}
.ax-footer-logos-9b0c {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.ax-footer-logos-9b0c img {
    max-height: 30px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s;
}
.ax-footer-logos-9b0c img:hover {
    filter: grayscale(0);
    opacity: 1;
}
.ax-copyright-1d2e {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Sticky Widget */
.ax-sticky-widget-3f4g {
    position: fixed;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #ffec00;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: transform 0.4s ease-in-out;
    display: flex;
    align-items: center;
    gap: 15px;
}
.ax-sticky-widget-3f4g a {
    text-decoration: none;
}
.ax-widget-text-5h6j strong {
    color: #ffec00;
    display: block;
    font-size: 1.2rem;
}
/* Desktop */
@media (min-width: 769px) {
    .ax-sticky-widget-3f4g {
        bottom: 20px;
        right: 20px;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .ax-sticky-widget-3f4g {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        justify-content: center;
    }
    .ax-pros-cons-grid-3h4j, .ax-bonuses-grid-7h8j {
        grid-template-columns: 1fr;
    }
    .ax-author-block-5m6n {
        flex-direction: column;
        text-align: center;
    }
    .ax-hero-content-3x4y h1 {
        font-size: 2.2rem;
    }
    .ax-header-inner-7g8h {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
