

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.alert-success {
    background-color: #28a745; /* Green */
    border-color: #28a745;
}

.alert-warning {
    background-color: #ffc107; /* Yellow */
    border-color: #ffc107;
    color: #333;
}

.alert-danger {
    background-color: #dc3545; /* Red */
    border-color: #dc3545;
}

.close-flash {
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    color: inherit;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.8;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.close-flash:hover {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f0f0f0;
    color: #333;
}

.top-bar {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 0.01rem;
    font-size: 1rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

.header-container {
    position: sticky;
    top: 0;
    z-index: 1100;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

nav .fas {
    margin-right: 8px;
}

.user-options {
    display: flex;
    align-items: center;
}

.user-options span, .user-options a {
    margin-left: 1.5rem;
    color: #333;
    text-decoration: none;
}

.user-options .fas {
    font-size: 1.2rem;
}

main {
    padding: 1rem;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  aspect-ratio: 16 / 9; /* Maintain a consistent aspect ratio */
  overflow: hidden; /* Hide parts of images that don't fit */
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 150px; /* Adjust based on header height */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: 80%;
    max-width: 600px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.alert-success {
    background-color: #28a745; /* Green */
    border-color: #28a745;
}

.alert-warning {
    background-color: #ffc107; /* Yellow */
    border-color: #ffc107;
    color: #333;
}

.alert-danger {
    background-color: #dc3545; /* Red */
    border-color: #dc3545;
}

.close-flash {
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    color: inherit;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.8;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.close-flash:hover {
    opacity: 1;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.mySlides img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fit the image within the container without cropping */
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}



/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.subscribe {
    margin-top: 3rem;
}

.subscribe h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.subscribe form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe input[type="email"] {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 300px;
}

.subscribe button {
    padding: 0.8rem;
    font-size: 1rem;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.features {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    max-width: 100%;
    border-radius: 8px;
}

.feature-item h4 {
    margin-top: 1rem;
    font-size: 1.2rem;
}

footer {
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
}

.download-section {
    text-align: center;
    padding: 1rem 2rem 1rem 2rem;
    background-color: #fff;
}

.download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.download-area {
    text-align: center; /* Center all content within this area */
    margin-top: 2rem;
    flex-direction: column;
}

.download-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.download-button {
    max-width: 250px; /* Set a max width for the button */
    width: 100%;      /* Make it responsive within the max-width */
    display: inline-block; /* Allow centering */
}

.compatibility-info {
    display: inline-flex; /* Treat as a single inline block for centering */
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.compatibility-info p {
    display: inline-flex;
    align-items: center;
    margin: 0;
    font-size: 1rem;
    color: #555;
    gap: 0.5rem; /* Add gap for items inside p if needed */
}

.compatibility-info i, .compatibility-logo {
    margin-right: 8px;
    vertical-align: middle;
}

.compatibility-logo {
    height: 1.2rem;
}

.testimonials {
    background-color: #212529;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonials .subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #adb5bd;
    margin-bottom: 0.5rem;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Times New Roman', Times, serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.testimonial-item {
    background-color: #212529;
}

.testimonial-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-item p {
    font-size: 1rem;
    color: #ced4da;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
}

.pricing {
    padding: 1px 2rem 4rem 2rem;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pricing .subtitle {
    color: #6c757d;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-plan {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
    flex: 1;
    max-width: 400px;
    position: relative;
}

.pricing-plan.popular {
    border-color: #0d6efd;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.25);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #ffc107;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-plan h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-plan p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: #6c757d;
}

.btn {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 1.5rem 0;
}

.btn-outline {
    border: 1px solid #6c757d;
    color: #333;
}

.btn-primary {
    background-color: #0d6efd;
    color: #fff;
    border: 1px solid #0d6efd;
}

.features-list {
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
}

.features-list h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: #333;
}

.features-list .fa-check {
    color: #198754;
    margin-right: 0.5rem;
}

.features-list .fa-times {
    color: #dc3545;
    margin-right: 0.5rem;
}

.video-section {
    padding: 1rem 2rem 1rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

.video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 35%;
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.odds-info {
    padding: 1rem 0rem 1rem 0rem;
    text-align: center;
}

.odds-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.odds-info p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.odds-info ul {
    list-style: disc;
    padding-left: 40px;
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.odds-info li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pokerstars-approval {
    padding: 1rem 0rem 1rem 0rem;
    background-color: #f0f0f0;
    text-align: center;
}

.approval-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.approval-badge {
    text-align: center;
}

.approval-badge .fa-check {
    font-size: 4rem;
    color: #28a745;
}

.approval-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
    margin-top: 0.5rem;
}

.approval-header p {
    font-size: 1.2rem;
    max-width: 300px;
    text-align: left;
}

.approval-body h2 {
    font-size: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.4;
}

.terms-link {
    color: #8B4513;
    text-decoration: underline;
}

.terms-details {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.terms-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.terms-details p {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.terms-details ol {
    padding-left: 20px;
}

.terms-details li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {
    h2, .hero-title {
        font-size: 1.8rem !important; /* Adjust h2 font size for mobile */
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .main-nav li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        padding: 1rem;
        display: block;
        justify-content: center;
    }

    .mobile-nav-toggle {
        display: block;
    }

    h2, .hero-title, .download-section h2, .pricing h2, .testimonials h2, .video-section h2, .odds-info h2, .approval-body h2 {
        font-size: 1.8rem;
    }

    .prev, .next {
        top: 40%;
        padding: 12px;
        font-size: 16px;
    }

    .video-container {
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
    }

    .download-container {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .video-container {
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
    }
}
