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

:root {
    --primary-gold: #ffbc15;
    --primary-blue: #21b6f4;
    --dark-bg: #f9f9f9;
    --darker-bg: #f9f9f9;
    --card-bg: white;
    --sidebar-bg: #f9f9f9;
    --text-primary: #171b20;
    --text-secondary: #171b20;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    margin: 0;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

p, i, b, a, h1, h2, h3, h4, h5, h6, ul, ol {
    color: var(--text-primary);
    font-family: "Inter", sans-serif;
}

h1 {
    margin-top: 0;
    font-weight: 900;
    font-size: 42px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 20px;
}

h2 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 768px) {
    h1{
        font-size: 28px;
    }
    h2{
        font-size: 22px;
    }
    h3{
        margin-top: 15px;
    }
}

/* TikTok Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 325px;
    margin: 20px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100% !important;
    height: 739px !important;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
    
    .video-container iframe {
        height: 600px !important;
    }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.video-grid .video-container {
    margin: 0;
}


.table-wrapper{
    overflow-x: auto;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 188, 21, 0.3), transparent);
    margin: 15px 0;
}

/* Sidebar Navigation */
.sidebar {
    overflow-y: auto;
    z-index: 100;
    padding: 20px 20px 10px 20px;
    position: fixed;
    background-color: var(--sidebar-bg);
    height: 100%;
    width: 240px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .sidebar {
        height: auto;
        border-right: none;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.sidebar::-webkit-scrollbar {
    width: 0;
}

.sidebar .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sidebar .logotype {
    max-height: 45px;
    width: auto;
}

@media (max-width: 768px) {
    .sidebar .logotype {
        height: 35px;
    }
}

.sidebar .burger-menu {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .sidebar .burger-menu {
        display: block;
    }
}

.sidebar .block-menu {
    display: block;
}

@media (max-width: 768px) {
    .sidebar .block-menu {
        display: none;
        position: fixed;
        width: 100%;
        top: 75px;
        left: 0;
        right: 0;
        z-index: 300;
        background-color: var(--sidebar-bg);
        padding: 20px;
        max-height: 80vh;
        overflow-y: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .sidebar .block-menu.active {
        display: block;
    }
}

.sidebar .menu {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.sidebar .menu li {
    margin-bottom: 8px;
}

.sidebar .menu li a {
    text-decoration: none;
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-secondary);
}

.sidebar .menu li a:hover,
.sidebar .menu li a.active {
    background-color: rgba(255, 188, 21, 0.1);
    color: var(--primary-gold);
}

.sidebar .download {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 188, 21, 0.3);
    background: #ff9500; 
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.sidebar .download:hover {
    background: rgba(255, 188, 21, 0.15);
    border-color: var(--primary-gold);
}

.sidebar .download .text {
    flex: 1;
    margin: 0 12px;
}

.sidebar .download .text span {
    font-size: 11px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 2px;
}

.sidebar .download .text p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.sidebar .auth {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.sidebar .auth a {
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar .auth .login {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.sidebar .auth .login:hover {
    background: var(--primary-blue);
    color: white;
}

.sidebar .auth .reg {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9500 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 188, 21, 0.3);
}

.sidebar .auth .reg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 188, 21, 0.5);
}

.sidebar .auth-mobile {
    display: none;
}

@media (max-width: 768px) {
    .sidebar .auth {
        display: none;
    }
    
    .sidebar .auth-mobile {
        display: flex;
        gap: 10px;
        /* margin-top: 15px; */
    }
    
    .sidebar .auth-mobile a {
        text-decoration: none;
        padding: 10px;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        font-weight: 600;
        font-size: 14px;
    }
    
    .sidebar .auth-mobile .login {
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
    }
    
    .sidebar .auth-mobile .reg {
        background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9500 100%);
        color: white;
    }
}

.sidebar .info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar .info p {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.sidebar .social {
    display: flex;
    gap: 10px;
}

.sidebar .social img {
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sidebar .social img:hover {
    transform: scale(1.1);
}

/* Main Content - ИСПРАВЛЕНО */
.content {
    width: calc(100% - 240px);
    margin-left: 240px;
    position: relative;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .content {
        width: 100%;
        margin-left: 0;
        margin-top: 75px;
    }
}

.container {
    position: relative;
    padding: 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
}

/* Hero Slides - ИСПРАВЛЕНО */
.slides {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    padding: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .slides {
        grid-template-columns: 1fr;
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .slides {
        padding: 20px 15px;
    }
}

.slide-first,
.slide-second {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide-first:hover,
.slide-second:hover {
    transform: translateY(-5px);
}

.slide-first a,
.slide-second a {
    display: block;
    text-decoration: none;
}

.slide-first img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-first {
    /* min-height: 300px; */
    max-height: 300px;
    position: relative;
}

.slide-first .text {
    position: absolute;
    bottom: 80px;
    left: 30px;
    font-family: "Unbounded", sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

@media (max-width: 768px) {
    .slide-first .text {
        font-size: 20px;
        /* bottom: 60px; */
        left: 20px;
        line-height: 1.3;
        top: unset;
    }
}

.slide-first .button {
    position: absolute;
    bottom: 25px;
    left: 30px;
    font-family: "Unbounded", sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9500 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 188, 21, 0.4);
    margin: 0;
}

@media (max-width: 768px) {
    .slide-first .button {
        font-size: 16px;
        padding: 10px 20px;
        left: 20px;
    }
}

.slide-second {
    background: linear-gradient(135deg, #0a2540 0%, #0a0e1a 100%);
    min-height: 300px;
    max-height: 300px;
    position: relative;
}

@media (max-width: 1024px) {
    .slide-second {
        display: none;
    }
}

.slide-second .text {
    position: absolute;
    top: 40px;
    left: 30px;
    font-family: "Unbounded", sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.slide-second .num {
    position: absolute;
    top: 80px;
    left: 30px;
    font-family: "Unbounded", sans-serif;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.slide-second .buttons {
    position: absolute;
    bottom: 25px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
}

.slide-second .button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0;
}

.slide-second .button-yellow {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.slide-second .button-green {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.slide-second .button:hover {
    transform: translateY(-2px);
}

/* Content Box */
.box {
    width: 100%;
    padding: 30px;
    border-radius: 16px;
    background: var(--card-bg);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.box p {
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.box ul,
.box ol {
    margin: 20px 0;
    padding-left: 25px;
}

.box li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.box img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

/* Spoiler/Accordion */
.spoiler-list {
    background-color: #faf2e5;
    border-radius: 8px;
    margin-bottom: 24px;
}

.spoiler-list .spoiler-btn {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.spoiler-list .spoiler-btn p {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.spoiler-list .spoiler-btn .arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.spoiler-list .spoiler-btn .arrow.open {
    transform: rotate(180deg);
}

.spoiler-list .spoiler-list-content {
    display: none;
}

.spoiler-list .spoiler-list-content.show {
    display: block;
}

.spoiler-list .spoiler-list-content ol {
    padding-left: 28px;
    padding-bottom: 10px;
    margin-top: 4px;
}

.spoiler-list .spoiler-list-content li {
    margin-bottom: 10px;
}

.spoiler-list .spoiler-list-content li a {
    color: #000;
    text-decoration: none;
}

.spoiler-list .spoiler-list-content li a:hover {
    color: var(--primary-gold);
}

/* Table */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
}

table th,
table td {
    padding: 16px;
    text-align: left;
}

table thead tr {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a8fc7 100%);
}

table thead tr th {
    font-weight: 700;
    color: white;
}

table thead tr th:first-child {
    border-radius: 8px 0 0 0;
}

table thead tr th:last-child {
    border-radius: 0 8px 0 0;
}

table tbody tr {
    background: var(--card-bg);
    transition: background-color 0.2s ease;
}

table tbody tr:nth-child(even) {
    background: rgba(33, 182, 244, 0.05);
}

table tbody tr:hover {
    background: rgba(33, 182, 244, 0.1);
}

table tbody tr:nth-child(even):hover {
    background: rgba(33, 182, 244, 0.15);
}

table tbody tr td {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

table tbody tr td:first-child {
    font-weight: 600;
    color: var(--primary-gold);
}

table tbody tr td:not(:first-child) {
    color: var(--text-secondary);
}

/* Bonus Section */
.bonus {
    position: relative;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9500 100%);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(255, 188, 21, 0.3);
}

@media (max-width: 768px) {
    .bonus {
        padding: 30px 20px;
    }
}

.bonus::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.bonus .text {
    color: var(--dark-bg);
    font-family: "Unbounded", sans-serif;
    font-weight: 900;
    font-size: 18px;
    margin: 0 0 10px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.bonus .text-heading {
    color: var(--dark-bg);
    font-family: "Unbounded", sans-serif;
    font-weight: 900;
    font-size: 42px;
    margin: 0 0 30px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .bonus .text-heading {
        font-size: 28px;
    }
}

.bonus .actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .bonus .actions {
        flex-direction: column;
    }
}

.bonus .actions .promo-code {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .bonus .actions .promo-code {
        width: 100%;
    }
}

.bonus .actions .promo-code:hover {
    transform: scale(1.05);
}

.bonus .actions .promo-code img {
    margin-left: 12px;
    width: 20px;
    height: 20px;
}

.bonus .actions .btn {
    padding: 16px 40px;
    background: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .bonus .actions .btn {
        width: 100%;
        text-align: center;
    }
}

.bonus .actions .btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(33, 182, 244, 0.4);
}

/* FAQ */
.faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.faq .faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq .faq-item:hover {
    border-color: var(--primary-gold);
}

.faq .faq-item h3 {
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    background: rgba(33, 182, 244, 0.05);
    transition: background 0.3s ease;
}

.faq .faq-item h3:hover {
    background: rgba(33, 182, 244, 0.1);
}

.faq .faq-item h3::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq .faq-item.show h3::after {
    content: '−';
    transform: rotate(180deg);
}

.faq .faq-item .faq-item-content {
    display: none;
    padding: 20px;
}

.faq .faq-item .faq-item-content.show {
    display: block;
}

.faq .faq-item .faq-item-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--sidebar-bg);
    padding: 30px 15px 15px;
    border-radius: 20px 20px 0 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
}

.footer .currency {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer .currency img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer .currency img:hover {
    opacity: 1;
}

.footer .footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .footer .footer-logos {
        padding: 20px 0;
    }
}

.footer .footer-logos img {
    height: 25px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer .footer-logos img:hover {
    opacity: 1;
}

.footer .footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .footer .footer-links {
        padding: 15px 0;
        gap: 15px;
    }
}

.footer .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer .footer-links a:hover {
    color: var(--primary-gold);
}

.footer-copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 30px;
}

/* Cookies Banner */
.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--card-bg);
    border-top: 2px solid var(--primary-gold);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .cookies {
        flex-direction: column;
        text-align: center;
    }
}

.cookies .cookies-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .cookies .cookies-block {
        flex-direction: column;
    }
}

.cookies .cookies-block img {
    width: 50px;
    height: 50px;
}

.cookies .cookies-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.cookies .cookies-links .btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9500 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookies .cookies-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 188, 21, 0.4);
}

/* Download App Button */
.download-app {
    display: none;
}

@media (max-width: 768px) {
    .download-app {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: var(--card-bg);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 15px;
        display: block;
    }
    
    .download-app a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9500 100%);
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(255, 188, 21, 0.3);
    }
    
    .download-app a img {
        margin-right: 10px;
        width: 20px;
        height: 20px;
    }
    
    .download-app a span {
        font-size: 10px;
        opacity: 0.8;
        margin-left: 10px;
        color: white;
    }
}

/* Utility Classes */
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 1rem; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.hidden { display: none; }

.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}

.list-group-flush .list-group-item {
    border: 0;
    padding: 12px 0;
}

.list-group-item {
    list-style: none;
    color: var(--text-secondary);
    line-height: 1.7;
}

.reviews-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.reviews-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.reviews-list li strong {
    font-weight: 700;
}

.reviews-list li em {
    font-style: normal;
    font-weight: 400;
}

/* Schema Cards */
.schema-card,
.schema-review {
    background: var(--card-bg);
    border: 1px solid rgba(255, 188, 21, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.schema-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(33, 182, 244, 0.1);
}

.schema-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 188, 21, 0.05) 0%, rgba(255, 149, 0, 0.05) 100%);
    border-radius: 12px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--primary-gold);
    font-size: 20px;
    letter-spacing: 2px;
}

.rating-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.rating-max {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 14px;
}

.schema-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .schema-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.schema-info-item {
    padding: 20px;
    background: rgba(33, 182, 244, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(33, 182, 244, 0.1);
}

.info-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.highlight-gold {
    color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-green {
    color: #28a745;
}

.highlight-orange {
    color: #ff6b35;
}

.schema-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .schema-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.schema-developer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.developer-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.developer-name {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 16px;
}

.schema-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Review Schema */
.review-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(33, 182, 244, 0.1);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.review-body {
    margin: 25px 0;
}

.review-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.review-section:last-child {
    margin-bottom: 0;
}

.review-section p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-secondary);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.author-name {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 16px;
}
