:root {
    --tpg-bg: #342152;
    --tpg-footer: #27193e;
    --tpg-accent: #ffc827;
    --tpg-btn-gradient: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    --tpg-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--tpg-bg) url('../images/bg.png') center;
    background-size: 500px;
    color: white;
    line-height: 1.6;
}

.tpg--container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
}

.tpg--btn {
    background: var(--tpg-btn-gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: #342152;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
    text-decoration: none;
}

.tpg--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 156, 25, 0.4);
}

.tpg--section {
    padding: 80px 0;
}

.tpg--border {
    border: 1px solid var(--tpg-border);
    border-radius: 10px;
}


.tpg--header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(52, 33, 82, 0.95);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.tpg--header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tpg--logo {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
}

.tpg--logo span {
    color: var(--tpg-accent);
}

.tpg--nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tpg--nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.tpg--nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.tpg--nav-link:hover {
    color: var(--tpg-accent);
}

.tpg--mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.tpg--banner {
    padding: 160px 0;
    background: url('../images/banner.jpg') center no-repeat;
    background-size: cover;
}

.tpg--banner h1 {
    font-size: 58px;
    margin-bottom: 20px;
    max-width: 600px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

.tpg--banner p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 1;
}


.tpg--featured-game {
    text-align: center;
}

.tpg--game-card {
    background: rgba(39, 25, 62, 0.6);
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tpg--game-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tpg--game-title {
    font-size: 28px;
    margin-bottom: 15px;
}


.tpg--about {
    text-align: center;
    padding-bottom: 30px;
}

.tpg--about-subtitle {
    color: var(--tpg-accent);
    font-size: 18px;
    margin-bottom: 10px;
}

.tpg--about-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.tpg--about-text {
    max-width: 900px;
    margin: 0 auto 15px;
    opacity: 0.9;
}

.tpg--stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.tpg--stat-item {
    text-align: center;
}

.tpg--stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--tpg-accent);
    margin-bottom: 5px;
}

.tpg--stat-label {
    font-size: 16px;
    opacity: 0.8;
}


.tpg--faq {
    max-width: 800px;
    margin: 0 auto;
}

.tpg--faq-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.tpg--faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.tpg--faq-question {
    background: rgba(39, 25, 62, 0.6);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.tpg--faq-answer {
    background: rgba(39, 25, 62, 0.3);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.tpg--faq-item.active .tpg--faq-answer {
    padding: 20px;
    max-height: 200px;
}


.tpg--footer {
    background-color: var(--tpg-footer);
    padding: 60px 0 0;
}

.tpg--footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.tpg--footer-logo {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tpg--footer-logo span {
    color: var(--tpg-accent);
}

.tpg--footer-description {
    opacity: 0.8;
}

.tpg--footer-description p{
    margin-bottom: 15px;
}

.tpg--footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.tpg--footer-links ul {
    list-style: none;
}

.tpg--footer-links li {
    margin-bottom: 10px;
}

.tpg--footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.tpg--footer-links a:hover {
    opacity: 1;
    color: var(--tpg-accent);
}

.tpg--footer-bottom {
    border-top: 1px solid var(--tpg-border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tpg--footer-legal {
    display: flex;
    gap: 20px;
}

.tpg--footer-legal a{
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
}

.tpg--copyright {
    opacity: 0.7;
}


.tpg--breadcrumbs {
    padding: 20px 0;
    background-color: rgba(39, 25, 62, 0.7);
}

.tpg--breadcrumbs-nav {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.tpg--breadcrumbs-nav a {
    color: var(--tpg-accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.tpg--breadcrumbs-nav a:hover {
    opacity: 0.8;
}

.tpg--breadcrumbs-separator {
    margin: 0 10px;
    opacity: 0.6;
}

.tpg--breadcrumbs-current {
    opacity: 0.8;
}


.tpg--contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.tpg--contact-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.tpg--contact-description {
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 16px;
}

.tpg--contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tpg--contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tpg--contact-icon {
    width: 50px;
    height: 50px;
    background: var(--tpg-btn-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #342152;
}

.tpg--contact-details h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.tpg--contact-details p {
    opacity: 0.8;
}

.tpg--contact-form-container {
    background: rgba(39, 25, 62, 0.6);
    padding: 30px;
    border-radius: 10px;
}

.tpg--contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tpg--form-group {
    display: flex;
    flex-direction: column;
}

.tpg--form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.tpg--form-group input,
.tpg--form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--tpg-border);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.tpg--form-group input:focus,
.tpg--form-group textarea:focus {
    outline: none;
    border-color: var(--tpg-accent);
}

.tpg--form-submit {
    align-self: flex-start;
    margin-top: 10px;
}

.tpg--form-success {
    text-align: center;
    display: none;
    padding: 20px 0;
}

.tpg--success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.tpg--form-success h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.tpg--form-success p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.tpg--success-btn {
    background: #4CAF50;
}


@media (max-width: 768px) {
    .tpg--contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tpg--contact-form-container {
        padding: 20px;
    }
}


.tpg--wolf{
    padding: 46px 0;
}

.tpg--wolf iframe{
    height: 520px;
    border-radius: 14px;
    max-width: 860px;
    width: 100%;
    display: block;
    margin: 0 auto;
}


.tpg-legal{
    padding: 50px 0;
}

.tpg-legal h2, .tpg-legal h3{
    margin: 20px 0 16px 0;
}

.tpg-legal ul{
    padding-left: 20px;
    margin: 18px 0;
}

.tpg-legal a{
    color: #fff;
}


.tpg--important{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tpg--important a{
    line-height: 0;
}

.tpg--important img{
    max-width: 200px;
    width: auto;
    max-height: 55px;
    height: auto;
}






















@media (max-width: 768px) {
    .tpg--nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--tpg-footer);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .tpg--nav-menu.active {
        display: flex;
    }

    .tpg--mobile-toggle {
        display: block;
    }

    .tpg--banner h1 {
        font-size: 36px;
    }

    .tpg--stats {
        gap: 30px;
    }

    .tpg--stat-number {
        font-size: 36px;
    }

    .tpg--footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .tpg--footer-legal {
        justify-content: center;
    }
}