/* Yellow and Blue Border Styles */
.yellow-border {
    border: 4px solid #FFE617 !important;
}

.blue-border {
    border: 4px solid #0070f5 !important;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 5px;
}

.close, .closePayTomorrow {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.copy-container {
    display: flex;
    align-items: center;
}

.copy-container input {
    flex: 1;
    margin-right: 10px;
}

.coupon-not-found {
    color: white;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    margin: 0 auto;
}

button#copyLinkBtn {
    background: #FFE512;
    color: #000 !important;
    border: 1px solid #000 !important;
}

.error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: block !important;
}

.hidden {
    display: none !important;
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }

    .top-header,
    .header-nav,
    .m-0,
    .sidebar,
    .coupon-location,
    .heading-separator,
    .separator-automotive-service,
    .page-banner,
    .coupons-offers-section,
    .print-all,
    .footer-list-hover,
    .copyright {
        display: none;
    }

    .printable .print_button button {
        visibility: hidden;
    }

    .printable, .printable * {
        visibility: visible;
    }

    .noprint {
        display: none;
    }

    .show-coupon-container .header {
        background-color: #FFE713 !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }

    .show-coupon-container .header::after {
        content: '';
        width: 100%;
        max-width: 535px;
        height: 6px;
        background: black;
        position: absolute;
        top: 50px;
        left: 112px;
        display: block;
    }

    @page {
        size: auto;
        margin: 0;
    }

    html, body {
        width: 100%;
        overflow: hidden;
    }

    .coupon-with-headings .footer {
        background: #0070F5 !important;
        -webkit-print-color-adjust: exact;
    }

    .sidebar {
        display: none !important;
    }
}

/* Suggestions Styles */
.suggestions {
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 1000;
}

.suggestion-item {
    padding: 7px 7px 7px 30px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.suggestion-item:hover {
    background: #f0f0f0;
}

.suggestion-item:before {
    content: '';
    background-image: url(../images/map-icon.svg);
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    position: absolute;
    top: calc(50% - 7px);
    left: 15px;
}

div#suggestions-zip-city-state {
    top: 84px;
    max-width: 480px;
}

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

ul, ol {
    list-style: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #000000;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    list-style: none;
    list-style-type: none;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #FFD700;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn-login {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #FFD700;
    color: #000000;
}

.btn-register {
    background-color: #FFD700;
    border: none;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 40px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

h1 {
    color: #FFD700;
    font-size: 2.5em;
    margin-bottom: 30px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 15px;
    text-align: center;
}

h2 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
}

h3 {
    color: #ffffff;
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
    color: #e0e0e0;
}

.container ol, .container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.container li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.container ul li {
    list-style-type: disc;
}

.container ol li {
    list-style-type: decimal;
}

strong {
    color: #FFD700;
}

/* Casino Action Buttons */
.casino-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin: 10px 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid transparent;
}

.casino-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: #000000;
}

.casino-btn-secondary {
    background: linear-gradient(135deg, #333, #555);
    color: #FFD700;
    border: 2px solid #FFD700;
}

.casino-btn-secondary:hover {
    background: linear-gradient(135deg, #555, #333);
    color: #ffffff;
}

.casino-btn-premium {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: #ffffff;
    border: 2px solid #FFD700;
}

.casino-btn-premium:hover {
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: #FFD700;
}

/* Banner Styles */
.banner-container {
    text-align: center;
    margin: 20px 0 40px 0;
}

.banner-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.banner-link:hover {
    transform: scale(1.02);
}

.banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Promo Section */
.promo-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.promo-section h2 {
    color: #000000;
    margin-top: 0;
}

.promo-section p {
    color: #000000;
    font-size: 1.2em;
    font-weight: bold;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #333;
}

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

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

.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FFD700;
}

.license-section {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.license-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.license-icon {
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    border-radius: 8px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.license-text {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

.age-restriction {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.age-icon {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 2px solid #333;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background-color: #1a1a1a;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}

.mobile-nav.active {
    display: block;
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
    background-color: #000000;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav-section {
    margin-bottom: 30px;
}

.mobile-nav-section h3 {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

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

.mobile-nav-section ul li {
    margin-bottom: 12px;
}

.mobile-nav-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.mobile-nav-section ul li a:hover {
    color: #FFD700;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.mobile-nav-buttons .btn-login,
.mobile-nav-buttons .btn-register {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
}

/* Mobile Header Navigation */
.mobile-header-nav {
    display: none;
}

.mobile-header-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.mobile-header-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.mobile-header-nav ul li a:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 15px 20px;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: block;
        flex-shrink: 0;
    }

    .nav-menu {
        display: none;
    }

    .mobile-header-nav {
        display: block;
        flex: 1;
        margin-left: 2px;
    }

    .mobile-header-nav ul {
        gap: 12px;
        align-items: center;
        height: 100%;
    }

    .mobile-header-nav ul li {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .mobile-header-nav ul li a {
        font-size: 14px;
    }

    .header-buttons {
        display: none;
    }

    .main-content {
        margin-top: 80px;
    }

    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}