.single-page {
    width: 100%;
    margin: 0;
    padding: 0;
}

.single-hero {
    width: 100%;
    margin: 0;
    padding: 0;
}

.single-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 550px;
    object-fit: cover;
}

.single-content-wrap {
    padding: 60px 0;
}

.single-content-wrap .container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.single-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.single-excerpt {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.85;
}

.single-content {
    font-size: 17px;
    line-height: 1.9;
}

.single-content img {
    max-width: 100%;
    height: auto;
}

.single-button-wrap {
    margin-top: 35px;
}
#site-header{
	display:none;
}
#site-footer{
	display:none;
}
.tpm-wrap,
.tpm-wrap * {
    box-sizing: border-box;
}

.tpm-wrap {
    --gold: #ffd700;
    --gold-dark: #b8860b;
    --gold-light: #fef08a;
    --white: #ffffff;
    --gray-light: #d1d5db;
    --gray-mid: #a1a1aa;
    --bg-dark: #0a0a0a;
    --bg-accent: #1a0f0f;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 215, 0, 0.2);
    --container-padding: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at center, var(--bg-accent) 0%, var(--bg-dark) 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.tpm-wrap a,
.tpm-wrap a:hover,
.tpm-wrap a:focus,
.tpm-wrap a:active {
    text-decoration: none !important;
    color: inherit;
}

.tpm-wrap img {
    max-width: 100%;
    height: auto;
}

.tpm-wrap .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.tpm-wrap .text-center { text-align: center; }
.tpm-wrap .section-padding { padding: clamp(60px, 10vw, 100px) 0; }

.tpm-wrap .header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    height: 80px;
    display: flex;
    align-items: center;
}

.tpm-wrap .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.tpm-wrap .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tpm-wrap .logo span { color: var(--white); font-style: italic; font-weight: 300; }
.tpm-wrap .nav-menu { display: flex; gap: 2.5rem; align-items: center; margin: 0; padding: 0; list-style: none; }
.tpm-wrap .nav-menu li { list-style: none; margin: 0; }
.tpm-wrap .nav-link { color: var(--gray-mid); font-weight: 500; transition: var(--transition); display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.tpm-wrap .nav-link:hover { color: var(--gold); }

.tpm-wrap .btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000 !important;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.tpm-wrap .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5);
    filter: brightness(1.1);
}

.tpm-wrap .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
}

.tpm-wrap .hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tpm-wrap .hero-link-wrapper {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: block;
}

.tpm-wrap .slider-container { position: absolute; inset: 0; z-index: 1; }
.tpm-wrap .slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; }
.tpm-wrap .slide.active { opacity: 1; }
.tpm-wrap .slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9)); }
.tpm-wrap .hero-content { position: relative; z-index: 10; text-align: center; max-width: 900px; padding: 0 20px; pointer-events: none; }
.tpm-wrap .hero-btns { pointer-events: auto; }
.tpm-wrap .hero-title { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 800; background: linear-gradient(to right, var(--gold-light), var(--gold), #a16207); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 20px; line-height: 1.1; text-transform: uppercase; }
.tpm-wrap .hero-desc { font-size: clamp(1rem, 3vw, 1.4rem); color: var(--gray-light); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }

.tpm-wrap .marquee-container {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 5px 25px rgba(0,0,0,0.6);
    z-index: 20;
    position: relative;
}

.tpm-wrap .marquee-text {
    display: inline-block;
    font-weight: 800;
    color: #000;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    text-transform: uppercase;
    animation: tpm-scroll-marquee 40s linear infinite;
}

@keyframes tpm-scroll-marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.tpm-wrap .section-header { margin-bottom: 60px; }
.tpm-wrap .section-header h2 { font-size: clamp(2.2rem, 5vw, 3rem); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; }
.tpm-wrap .section-header p { color: var(--gold); font-style: italic; font-weight: 500; font-size: 1.1rem; }
.tpm-wrap .divider { height: 4px; width: 80px; background: var(--gold); margin: 20px auto 0; border-radius: 10px; }

.tpm-wrap .game-grid,
.tpm-wrap .insights-grid {
    display: grid;
    gap: 30px;
}

.tpm-wrap .game-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.tpm-wrap .insights-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.tpm-wrap .glossy-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 28px;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tpm-wrap .glossy-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.tpm-wrap .card-img { width: 100%; height: 180px; border-radius: 20px; overflow: hidden; margin-bottom: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.tpm-wrap .card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.tpm-wrap .glossy-card:hover .card-img img { transform: scale(1.15); }
.tpm-wrap .card-title { font-size: 1.35rem; margin-bottom: 20px; font-weight: 600; color: var(--white); }
.tpm-wrap .insights-section { background: rgba(0,0,0,0.4); }
.tpm-wrap .insight-card { padding: 40px 30px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.tpm-wrap .insight-icon { font-size: 3.2rem; color: var(--gold); margin-bottom: 24px; background: rgba(255, 215, 0, 0.08); width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid var(--glass-border); box-shadow: 0 0 25px rgba(255, 215, 0, 0.1); }
.tpm-wrap .insight-card h4 { color: var(--gold); font-size: 1.5rem; margin-bottom: 15px; text-transform: uppercase; font-weight: 700; }
.tpm-wrap .insight-card p { color: var(--gray-mid); font-size: 1.05rem; margin-bottom: 25px; }

.tpm-wrap .about-flex { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.tpm-wrap .about-content, .tpm-wrap .about-image { flex: 1; min-width: 320px; }
.tpm-wrap .about-content h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); color: var(--gold); margin-bottom: 30px; line-height: 1.1; font-weight: 800; }
.tpm-wrap .about-content p { font-size: 1.15rem; color: var(--gray-light); margin-bottom: 40px; }
.tpm-wrap .stats-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.tpm-wrap .stat-item { background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); padding: 30px 20px; border-radius: 20px; text-align: center; }
.tpm-wrap .stat-item i { font-size: 2.2rem; color: var(--gold); margin-bottom: 10px; display: block; }
.tpm-wrap .stat-item span { font-size: 2.4rem; font-weight: 700; color: var(--white); display: block; }
.tpm-wrap .stat-item label { font-size: 0.9rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 1px; }
.tpm-wrap .about-image img { border-radius: 40px; border: 6px solid var(--glass-bg); box-shadow: 0 30px 60px rgba(0,0,0,0.6); width: 100%; display: block; }

.tpm-wrap .footer { background: #000; padding: 100px 0 40px; border-top: 1px solid #1a1a1a; }
.tpm-wrap .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; margin-bottom: 60px; }
.tpm-wrap .footer-logo { font-size: 2.4rem; color: var(--gold); font-weight: 800; margin-bottom: 25px; }
.tpm-wrap .footer-links h5 { font-size: 1.25rem; margin-bottom: 25px; text-transform: uppercase; color: var(--white); border-left: 3px solid var(--gold); padding-left: 15px; }
.tpm-wrap .footer-links a { color: var(--gray-mid); transition: var(--transition); display: block; margin-bottom: 15px; font-size: 1.05rem; }
.tpm-wrap .footer-links a:hover { color: var(--gold); transform: translateX(8px); }
.tpm-wrap .copyright { text-align: center; color: #555; font-size: 0.95rem; border-top: 1px solid #111; padding-top: 40px; }

.tpm-wrap .single-shell {
    padding: 80px 0;
}

.tpm-wrap .single-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.tpm-wrap .single-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1.2;
}

.tpm-wrap .single-excerpt {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.tpm-wrap .single-content {
    color: var(--gray-light);
}

.tpm-wrap .single-content p,
.tpm-wrap .single-content li {
    margin-bottom: 16px;
}

.tpm-wrap .single-thumb {
    margin-bottom: 24px;
    border-radius: 22px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .tpm-wrap { --container-padding: 35px; }
    .tpm-wrap .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        gap: 30px;
        transition: 0.5s ease-in-out;
        z-index: 2000;
    }
    .tpm-wrap .nav-menu.active { right: 0; }
    .tpm-wrap .menu-toggle { display: block; z-index: 2500; }
    .tpm-wrap .nav-link { font-size: 1.6rem; width: 100%; justify-content: center; }
    .tpm-wrap .btn-gold { font-size: 1.1rem; padding: 1rem 2rem; }
}

@media (max-width: 576px) {
    .tpm-wrap { --container-padding: 20px; }
    .tpm-wrap .header { height: 75px; }
    .tpm-wrap .logo { font-size: 1.25rem; }
    .tpm-wrap .hero { min-height: 620px; }
    .tpm-wrap .hero-btns { display: flex; flex-direction: column; width: 100%; align-items: center; }
    .tpm-wrap .btn-gold { width: 100%; max-width: 320px; justify-content: center; }
    .tpm-wrap .game-grid { gap: 20px; }
    .tpm-wrap .glossy-card { padding: 20px; }
    .tpm-wrap .section-header { margin-bottom: 40px; }
    .tpm-wrap .stats-container { grid-template-columns: repeat(1, 1fr); }
    .tpm-wrap .single-card { padding: 20px; }
}
