﻿/* style.css */
body {
    background-color: #edeef0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.tzrate-container {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    box-sizing: border-box;
}
.tzrate-header {
    background: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tzrate-logo {
    display: flex;
    align-items: center;
}
.tzrate-logo img {
    border-radius: 50%;
}
.tzrate-logo span {
    margin-left: 10px;
    font-size: 32px;
    font-weight: bold;
    color: #0055b3;
    line-height: 48px;
    height: 48px;
}
.tzrate-nav {
    display: flex;
    justify-content: flex-end;
}
.tzrate-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.tzrate-nav li {
    margin-left: 20px;
    position: relative;
}
.tzrate-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}
.tzrate-nav a:hover {
    color: #0055b3;
}
.tzrate-dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px;
    list-style: none;
}
.tzrate-dropdown:hover .tzrate-dropdown-menu {
    display: block;
}
.tzrate-hamburger {
    display: none;
}
@media (max-width: 768px) {
    .tzrate-nav {
        display: none;
    }
    .tzrate-nav.tzrate-active {
        display: block;
    }
    .tzrate-hamburger {
        display: block;
        position: absolute;
        right: 10px;
        top: 15px;
        font-size: 24px;
        cursor: pointer;
    }
    .tzrate-logo {
        margin-left: 10px;
    }
    .tzrate-nav ul {
        flex-direction: column;
    }
    .tzrate-nav li {
        margin: 10px 0;
    }
}
.tzrate-hero h1 {
    text-align: center;
    font-size: 36px;
}
.tzrate-rating-table {
    width: 100%;
    border-collapse: collapse;
}
.tzrate-rating-table tr {
    transition: background 0.3s;
}
.tzrate-rating-table tr:hover {
    background: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.tzrate-logo-cell {
    position: relative;
    background: #333;
    border-radius: 5px;
    text-align: center;
}
.tzrate-logo-cell img {
    border-radius: 5px;
}
.tzrate-rating-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: yellow;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
}
.tzrate-rating-overlay i {
    color: yellow;
}
.tzrate-info-cell {
    vertical-align: top;
}
.tzrate-info-cell div {
    margin-bottom: 10px;
}
.tzrate-details-content {
    background: #f5f5f5;
    padding: 10px;
}
.tzrate-specs {
    width: 100%;
}
.tzrate-bonus-plashka {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
    border-radius: 10px;
}
.tzrate-bonus-plashka:hover {
    transform: scale(1.02);
}
.tzrate-get-bonus {
    background: transparent;
    border: 1px solid red;
    color: red;
    margin-left: auto;
}
.tzrate-pros-cons {
    display: flex;
    justify-content: space-between;
}
.tzrate-pros, .tzrate-cons {
    width: 48%;
}
.tzrate-details-btn {
    background: transparent;
    border: none;
    color: #0055b3;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}
.tzrate-play-btn {
    background: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
.tzrate-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 20px 0;
}
.tzrate-faq-item {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 10px 0;
    transition: transform 0.3s;
}
.tzrate-faq-item:hover {
    transform: scale(1.01);
}
.tzrate-faq-question {
    width: 100%;
    text-align: left;
    padding: 10px;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
}
.tzrate-faq-answer {
    display: none;
    padding: 10px;
}
.tzrate-review-item {
    display: flex;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 10px 0;
    padding: 10px;
}
.tzrate-avatar {
    font-size: 60px;
    margin-right: 10px;
}
.tzrate-center {
    text-align: center;
}
.tzrate-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .tzrate-rating-table td {
        display: block;
        text-align: center;
    }
    .tzrate-logo-cell img {
        width: 100%;
        height: auto;
    }
    .tzrate-pros-cons {
        flex-direction: column;
    }
    .tzrate-pros, .tzrate-cons {
        width: 100%;
    }
}