/* ================================
   GLOBAL BASE STYLES - TRY AURORAKNOT
   Prefix: tryauroraknot-sbs-
   ================================ */

/* Body */
body.tryauroraknot-sbs-body {
    background-color: #a8062e;
    color: #393536;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #393536;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Text */
p, li, span {
    color: #393536;
    font-size: 16px;
}

/* Links */
a.tryauroraknot-sbs-link {
    color: #27576f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a.tryauroraknot-sbs-link:hover {
    color: #e75ca3;
}

/* Buttons */
.tryauroraknot-sbs-btn {
    background: linear-gradient(135deg, #27576f, #1d3f4f);
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.tryauroraknot-sbs-btn:hover {
    background: linear-gradient(135deg, #e75ca3, #b2467c);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Inputs & Textareas */
input.tryauroraknot-sbs-input,
textarea.tryauroraknot-sbs-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #393536;
    background-color: #fff;
}

input.tryauroraknot-sbs-input:focus,
textarea.tryauroraknot-sbs-textarea:focus {
    outline: none;
    border-color: #27576f;
}

/* Utility: Center Text */
.tryauroraknot-sbs-text-center {
    text-align: center;
}

/* Utility: Container */
.tryauroraknot-sbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Scroll to Top Button */
#tryauroraknot-sbs-scrolltop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #27576f, #1d3f4f);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: background 0.3s ease, transform 0.2s ease;
}

#tryauroraknot-sbs-scrolltop:hover {
    background: linear-gradient(135deg, #e75ca3, #b2467c);
    transform: translateY(-3px);
}



/* ===========================
   NAVIGATION - TRY AURORAKNOT
   =========================== */

.tryauroraknot-sbs-navbar {
    background-color: #a8062e;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tryauroraknot-sbs-logo {
    height: 70px;
}

.tryauroraknot-sbs-toggler {
    border: none;
    background: transparent;
}

.tryauroraknot-sbs-toggler-icon {
    width: 28px;
    height: 3px;
    background-color: #393536;
    display: block;
    position: relative;
}

.tryauroraknot-sbs-toggler-icon::before,
.tryauroraknot-sbs-toggler-icon::after {
    content: "";
    width: 28px;
    height: 3px;
    background-color: #393536;
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.tryauroraknot-sbs-toggler-icon::before {
    top: -8px;
}

.tryauroraknot-sbs-toggler-icon::after {
    top: 8px;
}

.tryauroraknot-sbs-nav-list .nav-item {
    margin-left: 22px;
}

.tryauroraknot-sbs-nav-link {
    color: #393536;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.tryauroraknot-sbs-nav-link:hover {
    background: linear-gradient(135deg, #27576f, #3a7d99);
    color: #ffffff;
}

.tryauroraknot-sbs-nav-link.active {
    background: linear-gradient(135deg, #27576f, #3a7d99);
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .tryauroraknot-sbs-nav-list .nav-item {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

/* ===========================
   HERO SECTION - TRYAURORAKNOT
   =========================== */
.tryauroraknot-sbs-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #393536;
}

.tryauroraknot-sbs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 220, 168, 0.6);
    z-index: 1;
}

.tryauroraknot-sbs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 20px;
}

.tryauroraknot-sbs-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #393536;
}

.tryauroraknot-sbs-hero-subtext {
    font-size: 1.2rem;
    color: #393536;
    margin-bottom: 20px;
}

.tryauroraknot-sbs-highlight {
    color: #27576f;
    font-weight: 600;
}

/* Gradient button */
.tryauroraknot-sbs-btn {
    background: linear-gradient(135deg, #27576f, #3a7d99);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.tryauroraknot-sbs-btn:hover {
    background: #ffffff;
    color: #27576f;
    border: 2px solid #27576f;
}


/* Disclaimer Section */
.tryauroraknot-sbs-disclaimer-section {
    background-color: #a8062e;
    color: #393536;
}

.tryauroraknot-sbs-disclaimer-card {
    background: #ffe6bf; /* lighter sandy beige */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.tryauroraknot-sbs-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #393536;
}

.tryauroraknot-sbs-disclaimer-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #393536;
}

/* Gradient button */
.tryauroraknot-sbs-btn {
    background: linear-gradient(135deg, #27576f, #3a7d99);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.tryauroraknot-sbs-btn:hover {
    background: #ffffff;
    color: #27576f;
    border: 2px solid #27576f;
}


/* Game Section */
.tryauroraknot-sbs-game-section {
    background-color: #a8062e;
    color: #393536;
}

/* Game Embed Box */
.tryauroraknot-sbs-game-embed {
    background: #ffeccf;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tryauroraknot-sbs-game-embed:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Iframe Wrapper */
.tryauroraknot-sbs-iframe-wrapper iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 8px;
}

/* Section Title */
.tryauroraknot-sbs-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #393536;
    margin-bottom: 20px;
}


.tryauroraknot-sbs-features-section {
    background-color: #a8062e;
    color: #393536;
}

.tryauroraknot-sbs-feature-card {
    background: #ffeac4;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tryauroraknot-sbs-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.tryauroraknot-sbs-feature-icon i {
    font-size: 2rem;
    color: #27576f;
}
.tryauroraknot-sbs-about-section {
    background-color: #a8062e;
    color: #393536;
}

.tryauroraknot-sbs-about-img {
    max-width: 95%;
    width: 480px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tryauroraknot-sbs-section-title {
    color: #393536;
    font-weight: 700;
    font-size: 2rem;
}

.tryauroraknot-sbs-about-text {
    font-size: 1.1rem;
    color: #393536;
    line-height: 1.7;
    margin-bottom: 15px;
}

.tryauroraknot-sbs-highlight {
    color: #27576f;
    font-weight: 600;
}
/* ===== Reviews Section Global Styles ===== */
.tryauroraknot-sbs-reviews-section {
    background-color: #a8062e;
    padding: 60px 0;
}

.tryauroraknot-sbs-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #393536;
    margin-bottom: 10px;
}

.tryauroraknot-sbs-reviews-intro {
    color: #393536;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===== Review Cards ===== */
.tryauroraknot-sbs-review-card {
    background-color: #fff6e9;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.tryauroraknot-sbs-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.tryauroraknot-sbs-review-card p {
    font-size: 1rem;
    color: #393536;
    margin-bottom: 20px;
    font-style: italic;
}

/* ===== Author Info ===== */
.tryauroraknot-sbs-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tryauroraknot-sbs-author-info i {
    font-size: 1.8rem;
    color: #27576f;
    background: linear-gradient(45deg, #27576f, #3c7b97);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.tryauroraknot-sbs-author-info h5 {
    margin: 0;
    font-weight: 600;
    color: #393536;
}

.tryauroraknot-sbs-author-info small {
    color: #666;
}

/* ===== Carousel Controls ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #27576f;
    padding: 15px;
    border-radius: 50%;
    background-size: 50% 50%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}


/* Overlay */
.tryauroraknot-sbs-age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(57, 53, 54, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.tryauroraknot-sbs-age-popup-box {
    background: #a8062e;
    color: #393536;
    padding: 30px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Title */
.tryauroraknot-sbs-age-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Text */
.tryauroraknot-sbs-age-popup-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Buttons */
.tryauroraknot-sbs-btn-age {
    background: linear-gradient(45deg, #27576f, #3a7997);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin: 5px;
    transition: background 0.3s ease;
}

.tryauroraknot-sbs-btn-age:hover {
    background: #393536;
}

/* Scroll to Top Button - Tryauroraknot */
.tryauroraknot-sbs-scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #27576f, #3a7997);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    padding: 0;
    line-height: 50px;
}

/* Hover Effect */
.tryauroraknot-sbs-scroll-top:hover {
    background: #393536;
    transform: translateY(-3px);
}

/* Footer Section */
.tryauroraknot-sbs-footer {
    background-color: #a8062e;
    color: #393536;
    padding-top: 40px;
}

.tryauroraknot-sbs-footer-divider {
    height: 2px;
    background: #27576f;
    opacity: 0.3;
}

.tryauroraknot-sbs-footer-logo {
    max-width: 160px;
}

/* Footer Headings */
.tryauroraknot-sbs-footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #393536;
    margin-bottom: 15px;
}

/* Footer Text */
.tryauroraknot-sbs-footer-text {
    color: #393536;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tryauroraknot-sbs-footer-text a {
    color: #27576f;
    text-decoration: underline;
}

.tryauroraknot-sbs-footer-text a:hover {
    color: #3c7b97;
}

/* Footer Links */
.tryauroraknot-sbs-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tryauroraknot-sbs-footer-link {
    display: block;
    text-decoration: none;
    color: #393536;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.tryauroraknot-sbs-footer-link:hover {
    color: #27576f;
}

/* Copyright */
.tryauroraknot-sbs-footer-copyright {
    border-color: rgba(57, 53, 54, 0.2) !important;
    color: #393536;
    font-size: 0.85rem;
}
