/* Single Game Styles */
.single-game {
    width: 100%;
}

/* Gray Line */
.single-game__line {
    width: 100%;
    height: 100px;
    background-color: #2d3436;
}

/* Hero Section */
.single-game-hero {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

.single-game-hero__inner {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .single-game-hero__inner {
        padding-left: 2%;
        padding-right: 2%;
    }
}

@media (max-width: 991px) and (min-width: 576px) {
    .single-game-hero__inner {
        padding-left: 1.25%;
        padding-right: 1.25%;
    }
}

@media (max-width: 575px) {
    .single-game-hero__inner {
        padding-left: 0.75%;
        padding-right: 0.75%;
    }
    .single-game-hero {
        padding: 40px 0;
    }
}

.single-game-hero__content {
    display: grid;
    grid-template-columns: 20% 1px 50% 30%;
    gap: 40px;
    align-items: start;
    width: 100%;
}

@media (max-width: 991px) {
    .single-game-hero__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .single-game-hero__divider {
        display: none;
    }
}

.single-game-hero__left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.single-game-hero__title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.single-game-hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    font-family: "Poppins", Arial, sans-serif;
    flex-shrink: 0;
}

.single-game-hero__rating i {
    font-size: 16px;
}

.single-game-hero__rating-value {
    line-height: 1;
}

.single-game-hero__title {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #0b1324;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .single-game-hero__title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .single-game-hero__title {
        font-size: 28px;
    }
}

.single-game-hero__provider {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.single-game-hero__divider {
    width: 1px;
    background-color: #e5e7eb;
    height: 100%;
    min-height: 100px;
}

.single-game-hero__middle {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.single-game-hero__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.single-game-hero__description {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #2d3436;
    line-height: 1.7;
    margin: 0;
}

.single-game-hero__description strong {
    font-weight: 700;
    color: #0b1324;
}

.single-game-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .single-game-hero__middle {
        order: 1;
    }
    
    .single-game-hero__right {
        order: 2;
    }
}

.single-game-hero__play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background-color: #43b02a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.single-game-hero__play-btn:hover {
    background-color: #3aa326;
    color: #ffffff;
}

.single-game-hero__play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.single-game-hero__play-icon svg path {
    stroke: #ffffff;
}

.single-game-hero__play-text {
    white-space: nowrap;
}

.single-game-hero__share {
    position: relative;
    display: inline-block;
}

.single-game-hero__share > span {
    color: #2d3436;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    font-family: "Poppins", Arial, sans-serif;
    border: 1px solid #e9ecef;
}

.single-game-hero__share > span i {
    font-size: 14px;
    color: #636e72;
}

.single-game-hero__share:hover > span {
    background: #e9ecef;
    border-color: #dee2e6;
}

.single-game-hero__share-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 10;
    padding: 8px;
}

.single-game-hero__share:hover .single-game-hero__share-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.single-game-hero__share-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-game-hero__share-list li {
    margin: 0;
    padding: 0;
}

.single-game-hero__share-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #0b1324;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.single-game-hero__share-list a svg {
    width: 16px;
    height: 16px;
    display: block;
}

.single-game-hero__share-list li.facebook a:hover {
    background: #1877f2;
    color: #ffffff;
}

.single-game-hero__share-list li.twitter a:hover {
    background: #000000;
    color: #ffffff;
}

.single-game-hero__share-list li.linkedin a:hover {
    background: #0077b5;
    color: #ffffff;
}

.single-game-hero__share-list li.pinterest a:hover {
    background: #bd081c;
    color: #ffffff;
}

.single-game-hero__share-list li.reddit a:hover {
    background: #ff4500;
    color: #ffffff;
}

.single-game-hero__save {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #2d3436;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    font-family: "Poppins", Arial, sans-serif;
}

.single-game-hero__save:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.single-game-hero__save i {
    font-size: 14px;
    color: #2d3436;
}

.single-game-hero__save-count {
    font-weight: 600;
    color: #2d3436;
}

/* Main Content */
.single-game-content {
    padding: 60px 0;
    background: #ffffff;
}

/* Sidebar Widgets (pros, cons, popular, news) - moved to single-shared.css */

/* About Section */
.single-game-about {
    margin-bottom: 0;
}

.single-game-about__title {
    font-size: 28px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 24px;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.2;
    position: relative;
    padding-bottom: 8px;
}

.single-game-about__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff8c42;
}

.single-game-about__content {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    font-family: "Poppins", Arial, sans-serif;
}

.single-game-about__content p {
    margin: 0 0 20px;
}

.single-game-about__content p:last-child {
    margin-bottom: 0;
}

.single-game-about__content blockquote {
    border-left: 4px solid #43b02a;
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: #6b7280;
}

/* Features Section */
.single-game-features {
    margin-bottom: 0;
}

.single-game-features__excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #2d3436;
    margin: 0 0 24px;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 500;
}

.single-game-features__excerpt strong {
    font-weight: 700;
    color: #0b1324;
}

.single-game-features__title {
    font-size: 28px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 24px;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.2;
    position: relative;
    padding-bottom: 8px;
}

.single-game-features__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff8c42;
}

.single-game-features__content {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    font-family: "Poppins", Arial, sans-serif;
}

.single-game-features__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-game-features__list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    font-family: "Poppins", Arial, sans-serif;
    list-style: none;
}

.single-game-features__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background-color: #2d3436;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-game-features__list li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
}

/* Categories */
.single-game-categories {
    margin-bottom: 0;
}

.single-game-categories__title {
    font-size: 28px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 20px;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.2;
}

.single-game-categories__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.single-game-categories__pill {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    color: #0b1324;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Poppins", Arial, sans-serif;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.single-game-categories__pill:hover {
    background: #e2e8f0;
    color: #0b1324;
}

/* Payment Methods */
.single-game-payment-methods {
    margin-bottom: 0;
}

.single-game-payment-methods__title {
    font-size: 28px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 20px;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.2;
}

.single-game-payment-methods__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.single-game-payment-methods__item {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    color: #0b1324;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Poppins", Arial, sans-serif;
}

/* More Games */
.single-game-more-games {
    margin-bottom: 0;
}

.single-game-more-games__title {
    font-size: 28px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 24px;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.2;
    position: relative;
    padding-bottom: 8px;
}

.single-game-more-games__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ffb400;
}

.single-game-more-games__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.single-game-more-games__card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.single-game-more-games__card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.single-game-more-games__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
    display: block;
}

.single-game-more-games__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-game-more-games__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    min-width: 0;
}

.single-game-more-games__item-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b1324;
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.3;
}

.single-game-more-games__item-title a {
    color: #0b1324;
    text-decoration: none;
    transition: color 0.2s ease;
}

.single-game-more-games__item-title a:hover {
    color: #43b02a;
}

.single-game-more-games__description {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
}

.single-game-more-games__actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.single-game-more-games__play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #43b02a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.single-game-more-games__play-btn:hover {
    background-color: #3aa326;
    color: #ffffff;
}

.single-game-more-games__play-btn svg {
    width: 14px;
    height: 14px;
}

.single-game-more-games__read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background-color: #ffffff;
    color: #0b1324;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.single-game-more-games__read-more-btn:hover {
    border-color: #0b1324;
    background-color: #0b1324;
    color: #ffffff;
}

@media (max-width: 991px) {
    .single-game-more-games__grid {
        grid-template-columns: 1fr;
    }
}

/* Comments use single-casino-comments classes from single-casino.css */
