/*
 Theme Name:  RetroTube Child Theme
 Theme URI:   https://www.wp-script.com/adult-wordpress-themes/retrotube/
 Description: Child Theme for WP-Script RetroTube theme
 Author:      WP-Script
 Template:    retrotube
 Text Domain: wpst
 Version:     1.0.0
*/

/*
IMPORTANT:
- Do not change "Author: WP-Script" in the header of this file. 

Need help? Check the following links to get more information about child themes:
- WP-Script help: https://www.wp-script.com/blog/how-to-create-a-wordpress-child-theme/
- WordPress developer resource: https://developer.wordpress.org/themes/advanced-topics/child-themes/

Write your own CSS code after this comment block.
*/

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

.premium-video {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(45deg,#ff3366,#ff6b6b);
    color: #fff;
    padding: 2px 6px;
/*     font-size: 12px; */
    border-radius: 3px;
    font-weight: bold;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Position adjustment if HD badge exists */
.hd-video + .premium-video {
    top: 30px;
}

.views{
	display:none;
}

.page-header {
    margin-bottom: 4em;
    position: relative;
}

.label{
	border-radius:50px
}

#site-navigation>ul>li>a{
	border-radius:20px
}

.row{
	text-align:center
}

#site-navigation a{
	background: white;
	color: black !important;
	margin: 0 5px 0 0;
	font-weight: bold;
}

#site-navigation{
	background: none !important;
}

.site-branding .header-search input{
	border-radius:20px
}
#site-navigation ul{
	display: flex;
	justify-content: center;
}

#site-navigation>ul>li {
	border-right: 0px;
	border-left: 0px;
}
#site-navigation>ul>li:first-child{
	border-left: 0px;
}

.site-branding.row{
	display: block;
}

.header-search{
	justify-content: center;
	display: flex;
}

.site-branding .logo{
	width: 100%;
}

#page{
	font-family: "Ubuntu", sans-serif;
	font-weight: 400;
	font-style: normal;
}

@media screen and (max-width: 991.98px) {
	#site-navigation ul{
		display: block;
	}
}

.thumb-block {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    display: block !important;
    transform: scale(0.985);
    background-color: #151515 !important;
    border-radius: 5px;
}

body{
	background: black !important;
}


/* Welcome page styles */
.welcome-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 2rem;
}

.welcome-container .row {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
}

.welcome-container h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-container p {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.welcome-container .col-md-12 {
    animation: pulse 2s infinite ease-in-out;
}

.home-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
}

.home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.home-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 51, 102, 0.2);
}

.pricing-page .price-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pricing-page h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-amount {
    margin: 2rem 0;
    font-family: "Ubuntu", sans-serif;
}

.price-amount .usd {
    font-size: 3.5rem;
    color: #ff3366;
    font-weight: 700;
}

.price-amount .try {
    font-size: 1.8rem;
    color: #ff6b6b;
    margin-left: 10px;
}

.price-amount .period {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-left: 5px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.features li {
    color: #e0e0e0;
    padding: 0.8rem 1rem;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.features li i {
    color: #ff3366;
    margin-right: 10px;
}

.subscribe-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
    margin: 1rem 0;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.price-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.price-footer p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .pricing-page .price-box {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .pricing-page h1 {
        font-size: 2rem;
    }
    
    .price-amount .usd {
        font-size: 2.8rem;
    }
    
    .price-amount .try {
        font-size: 1.4rem;
    }
    
    .features li {
        font-size: 1rem;
    }
    
    .subscribe-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

/* Ultimate Member Custom Styles */
.um {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Headers */
.um-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.um-name a {
    color: #fff;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Profile Photo */  
.um-profile-photo {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.um-profile-photo-img {
    border-radius: 50%;
    border: 3px solid rgba(255, 51, 102, 0.5);
    transition: all 0.3s ease;
}

.um-profile-photo-img:hover {
    transform: scale(1.05);
    border-color: #ff3366;
}

/* Buttons */
.um-button {
    background: linear-gradient(45deg, #ff3366, #ff6b6b) !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-size: 1.1rem !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2) !important;
    transition: all 0.3s ease !important;
}

.um-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.3) !important;
}

/* Forms */
.um-field-label label {
    color: #e0e0e0 !important;
    font-weight: 500 !important;
}

.um-field-area input {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #fff !important;
    padding: 12px !important;
}

/* Tabs */
.um-profile-nav {
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 0.5rem;
    border-radius: 10px;
}

.um-profile-nav-item a {
    background: transparent !important;
    color: #e0e0e0 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.um-profile-nav-item.active a,
.um-profile-nav-item a:hover {
    background: linear-gradient(45deg, #ff3366, #ff6b6b) !important;
    color: #fff !important;
}

/* Meta Info */
.um-meta {
    color: #888 !important;
    font-size: 0.9rem;
}

.um-meta-text {
    color: #e0e0e0 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .um {
        padding: 1rem;
    }
    
    .um-name a {
        font-size: 1.5rem;
    }
    
    .um-button {
        padding: 10px 20px !important;
        font-size: 1rem !important;
    }
}


.premium-overlay {
    background: rgba(30, 0, 40, 0.92);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(255, 51, 102, 0.15), 0 1.5px 10px rgba(0,0,0,0.25);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    margin: 2rem auto;
    max-width: 480px;
    position: relative;
    text-align: center;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(10px);
}

.premium-message p {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-button {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: #fff;
    border-radius: 25px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.18);
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    border: none;
}

.premium-button:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(255, 51, 102, 0.25);
    color: #fff;
}

.preview-thumb {
    display: block;
    margin: 0 auto;
    margin-top: 1.5rem;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(255, 51, 102, 0.12);
    border: 2px solid #ff3366;
    transition: box-shadow 0.3s;
}

.preview-thumb:hover {
    box-shadow: 0 8px 32px rgba(255, 51, 102, 0.22);
}

@media (max-width: 600px) {
    .premium-overlay {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 98vw;
    }
    .premium-message p {
        font-size: 1.05rem;
    }
    .premium-button {
        padding: 12px 18px;
        font-size: 1rem;
    }
}

/* Header glass effect */
.site-header {
    background: rgba(30, 0, 40, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(255, 51, 102, 0.08), 0 1.5px 10px rgba(0,0,0,0.18);
    border-bottom: 2px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 1000;
}

/* Logo and slogan */
.site-branding .logo a,
.site-branding .site-title a {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff3366, #ff6b6b 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
}

.site-description {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-top: 0.2em;
    font-weight: 400;
}

#site-navigation,
.main-navigation {
    display: none !important;
}

/* Main menu styles */
#child-site-navigation {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 270px;
    background: rgba(30, 0, 40, 0.98);
    box-shadow: 2px 0 32px rgba(255, 51, 102, 0.12);
    z-index: 12000; /* Make sure it's above everything else */
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#child-site-navigation.open {
    transform: translateX(0);
}

#child-site-navigation .row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
}

#child-site-navigation ul {
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
    width: 100%;
}

#child-site-navigation ul li {
    position: relative;
    width: 100%;
}

#child-site-navigation ul li a {
    display: block;
    padding: 1.1em 2em;
    border-radius: 0 30px 30px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff !important;
    background: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}

#child-site-navigation ul li a:hover,
#child-site-navigation ul li.current-menu-item a {
    background: linear-gradient(90deg, #ff3366 0%, #ff6b6b 100%);
    color: #fff !important;
    transform: translateX(6px) scale(1.04);
    box-shadow: 0 4px 18px rgba(255, 51, 102, 0.08);
}

#child-site-navigation .sidebar-close {
    position: sticky;
    top: 0;
    right: 0;
    left: 100%;
    margin-left: -44px;
    width: 44px;
    height: 44px;
    background: rgba(30,0,40,0.95);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 8px 8px 0;
    transition: background 0.2s, color 0.2s;
}
#child-site-navigation .sidebar-close:hover {
    background: #ff3366;
    color: #fff;
}
/* Hamburger button (fixed on page) */
.sidebar-hamburger {
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    scale: 1.2;
    left: auto;
    width: 44px;
    height: 44px;
    background: rgba(30,0,40,0.95);
    border: none;
    border-radius: 8px;
    z-index: 10001;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255,51,102,0.10);
}
.sidebar-hamburger span,
.sidebar-hamburger span:before,
.sidebar-hamburger span:after {
    content: '';
    display: block;
    height: 4px;
    width: 28px;
    background: linear-gradient(90deg, #ff3366, #ff6b6b);
    border-radius: 2px;
    transition: all 0.3s;
    position: relative;
}
.sidebar-hamburger span:before {
    position: absolute;
    top: -10px;
}
.sidebar-hamburger span:after {
    position: absolute;
    top: 10px;
}
#child-site-navigation.open ~ .sidebar-hamburger span {
    background: transparent;
}
#child-site-navigation.open ~ .sidebar-hamburger span:before {
    transform: translateY(10px) rotate(45deg);
}
#child-site-navigation.open ~ .sidebar-hamburger span:after {
    transform: translateY(-10px) rotate(-45deg);
}

/* Overlay background when sidebar is open */
.sidebar-overlay-bg {
    display: none;
    position: fixed;
    z-index: 9998;
    top: 0; left: 0; right: 0; bottom: 0;
    /* background: transparent; */
    opacity: 0;
    transition: opacity 0.3s;
}
#child-site-navigation.open ~ .sidebar-overlay-bg,
#child-site-navigation.open + .sidebar-overlay-bg {
    display: block;
    opacity: 0;
}
/* Responsive: sidebar always overlays */
@media (max-width: 991.98px) {
    #child-site-navigation {
        width: 85vw;
        min-width: 180px;
        max-width: 350px;
    }
    .sidebar-hamburger {
        right: 1rem;
        left: auto;
        top: 1rem;
    }
}

.child-main-menu-list .current-menu-item > a,
.child-main-menu-list .current_page_item > a {
    background: linear-gradient(90deg, #ff3366 0%, #ff6b6b 100%);
    color: #fff !important;
}


/* Flashy Video Card Styles for RetroTube Child Theme */


.loop-video{
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255,51,102,0.13), 0 1.5px 10px rgba(0,0,0,0.18);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.25s, transform 0.18s;
    border: 2px solid transparent;
}

.thumb-block .post-thumbnail img,
.video-preview video{
    border-radius: 14px;
}

.post-thumbnail-container:hover {
    box-shadow: 0 8px 32px rgba(255,51,102,0.25), 0 6px 20px rgba(255,51,102,0.18);
    /* border: 1px solid #ff3366; */
    /* transform: translateY(-4px) scale(1.03); */
    /* z-index: 2; */
    /* border-radius: 14px; */
}

/* .thumb-block .post-thumbnail,
.loop-video .post-thumbnail, */
.post-thumbnail-container {
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(255,51,102,0.10);
    transition: box-shadow 0.2s;
    background: linear-gradient(135deg, #ff3366 0%, #ff6b6b 100%);
}
/* .thumb-block .post-thumbnail img,
.loop-video .post-thumbnail img, */
/* .post-thumbnail-container img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: none !important;
    position: static;
} */


/* .thumb-block:hover, */
/* .loop-video:hover, */
.post-thumbnail-container:hover {
    /* box-shadow: 0 8px 32px rgba(255,51,102,0.25), 0 6px 20px rgba(255,51,102,0.18); */
    border: 2px solid #ff3366;
    /* transform: translateY(-4px) scale(1.03); */
    /* z-index: 2; */
}


.hd-video {
    position: absolute;
    top: 12px;
    right: 14px;
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: #fff;
    font-weight: 700;
    font-size: 0.95em;
    padding: 4px 12px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(255,51,102,0.13);
    z-index: 10;
    letter-spacing: 1px;
}

.entry-header,
.loop-video .entry-header {
    background: rgba(30,0,40,0.85);
    color: #fff;
    font-weight: 600;
    font-size: 1.08em;
    padding: 0.7em 1em 0.7em 1em;
    border-radius: 0 0 14px 14px;
    text-align: center;
    margin: 0;
    box-shadow: 0 2px 8px rgba(255,51,102,0.08);
}

.thumb-block .entry-header a,
.loop-video .entry-header a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.thumb-block .entry-header a:hover,
.loop-video .entry-header a:hover {
    color: #fff;
    text-shadow: 0 0 8px #ff3366;
}

span.duration, span.hd-video {
    background: rgba(255,51,102,0.85);
    color: #fff;
    font-size: 0.85em;
    border-radius: 8px;
    padding: 2px 8px;
    margin: 4px;
    box-shadow: 0 2px 8px rgba(255,51,102,0.13);
}

@media (max-width: 600px) {
    
    .loop-video,
    .post-thumbnail-container {
        border-radius: 12px;
        padding: 0;
    }
    .entry-header,
    .loop-video .entry-header {
        font-size: 1em;
        padding: 0.5em 0.5em;
        border-radius: 0 0 12px 12px;
    }
}

/* Modernize Header and Search Input */
.site-header {
    background: rgba(30, 0, 40, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(255, 51, 102, 0.13), 0 1.5px 10px rgba(0,0,0,0.18);
    border-bottom: 2px solid rgba(255,255,255,0.09);
    padding-bottom: 0.5rem;
}

.site-branding .logo img {
    max-height: 60px;
    max-width: 220px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(255,51,102,0.10);
    margin-bottom: 0.5rem;
}

.site-description {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-top: 0.2em;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(255,51,102,0.08);
}

.header-search {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.2rem 0 0.5rem 0;
    width: 100%;
}

.header-search form {
    width: 100%;
    max-width: 420px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border-radius: 30px;
    box-shadow: 0 2px 12px rgba(255,51,102,0.08);
    padding: 3px 8px 3px 18px;
}

.header-search input[type="text"], .header-search .input-group-field {
    flex: 1 1 auto;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 10px 12px 5px;
    border-radius: 30px;
    font-family: 'Ubuntu', sans-serif;
    transition: background 0.2s, color 0.2s;
}

.header-search input[type="text"]::placeholder,
.header-search .input-group-field::placeholder {
    color: #ffb3c6;
    opacity: 1;
    font-weight: 400;
}

.header-search input[type="text"]:focus,
.header-search .input-group-field:focus {
    background: rgba(255,255,255,0.13);
    color: #fff;
}

.header-search input[type="submit"],
.header-search button,
.header-search .button,
.header-search #searchsubmit {
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    margin-left: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255,51,102,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.header-search input[type="submit"]:hover,
.header-search button:hover,
.header-search .button:hover,
.header-search #searchsubmit:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff3366);
    transform: scale(1.08);
}

@media (max-width: 600px) {
    .site-branding .logo img {
        max-width: 140px;
        max-height: 40px;
    }
    .header-search form {
        max-width: 98vw;
        padding: 2px 4px 2px 10px;
    }
    .header-search input[type="text"],
    .header-search .input-group-field {
        font-size: 1rem;
        padding: 10px 6px 10px 0;
    }
    .header-search input[type="submit"],
    .header-search button,
    .header-search .button,
    .header-search #searchsubmit {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}


/* Flashy Widget Styles for RetroTube Child Theme */
.video-preview {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    /* width: 100%; */
    /* height: 100%; */
}
.widget,
.widget-area .widget,
.sidebar .widget,
.site-footer .widget {
    background: rgba(30, 0, 40, 0.92);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255,51,102,0.13), 0 1.5px 10px rgba(0,0,0,0.18);
    padding: 5px;
    border: 1.5px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(8px);
    color: #fff;
    transition: box-shadow 0.2s, border 0.2s;
}

.widget:hover,
.widget-area .widget:hover,
.sidebar .widget:hover,
.site-footer .widget:hover {
    box-shadow: 0 8px 32px rgba(255,51,102,0.22), 0 6px 20px rgba(255,51,102,0.18);
    border: 1.5px solid #ff3366;
}

.widget-title,
.widgettitle,
.widget h2,
.widget-area .widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff3366, #ff6b6b 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1px;
    border: none;
    box-shadow: none;
    text-shadow: 0 2px 8px rgba(255,51,102,0.08);
}

.widget ul,
.widget-area ul,
.sidebar ul,
.site-footer .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li,
.widget-area ul li,
.sidebar ul li,
.site-footer .widget ul li {
    padding: 0.8em 0.7em;
    border-radius: 12px;
    margin-bottom: 0.3em;
    background: rgba(255,255,255,0.04);
    transition: background 0.18s, color 0.18s;
}

.widget ul li:hover,
.widget-area ul li:hover,
.sidebar ul li:hover,
.site-footer .widget ul li:hover {
    background: linear-gradient(90deg, #ff3366 0%, #ff6b6b 100%);
    color: #fff;
}

.widget a,
.widget-area a,
.sidebar a,
.site-footer .widget a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.18s;
}

.widget a:hover,
.widget-area a:hover,
.sidebar a:hover,
.site-footer .widget a:hover {
    color: #fff;
    text-shadow: 0 0 8px #ff3366;
}

.widget input,
.widget select,
.widget textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid #ff3366;
    color: #fff;
    border-radius: 10px;
    padding: 0.5em 1em;
    margin-top: 0.5em;
    margin-bottom: 1em;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1em;
    transition: border 0.2s, background 0.2s;
}

.widget input:focus,
.widget select:focus,
.widget textarea:focus {
    border: 1.5px solid #ff6b6b;
    background: rgba(255,255,255,0.15);
    outline: none;
}

.widget_search .search-submit,
.widget input[type="submit"] {
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.6em 1.5em;
    font-size: 1em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255,51,102,0.13);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.widget_search .search-submit:hover,
.widget input[type="submit"]:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff3366);
    transform: scale(1.06);
}

@media (max-width: 600px) {
    .widget,
    .widget-area .widget,
    .sidebar .widget,
    .site-footer .widget {
        padding: 1em 0.7em 0.7em 0.7em;
        border-radius: 12px;
    }
    .widget-title,
    .widgettitle,
    .widget h2,
    .widget-area .widget-title {
        font-size: 1.1rem;
    }
}

.top-bar {
    display: none;
}

/* Flashy box-shadow for .title-block */
.title-block {
    background: #282028;
    border-left: 6px solid #ff3366;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(255,51,102,0.18), 0 1.5px 10px rgba(255,51,102,0.10), 0 0 0 4px rgba(255,107,107,0.07);
    padding: 0.5em 1.5em 0.5em 1.5em;
    margin: 1.25em 0 1.25em;
    position: relative;
    overflow: hidden;
}

.title-block h1.entry-title {
    background: linear-gradient(45deg, #ff3366, #ff6b6b 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.45em;
    margin: 0;
    padding: 0 0 0.5em;
    text-shadow: 0 2px 12px rgba(255,51,102,0.12);
}

/* Flashy style for .entry-content */
.entry-content {
    background: rgba(30, 0, 40, 0.85);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255,51,102,0.10), 0 1.5px 10px rgba(255,51,102,0.07);
    padding: 2.2em 2em 2em 2em;
    margin: 2em 0;
    color: #fff;
    font-size: 1.13rem;
    line-height: 1.7;
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,0.07);
    transition: box-shadow 0.2s, border 0.2s;
}

.entry-content a {
    color: #ff6b6b;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.18s;
}

.entry-content a:hover {
    color: #fff;
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-decoration: none;
}

.entry-content h2, .entry-content h3, .entry-content h4 {
    background: linear-gradient(45deg, #ff3366, #ff6b6b 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
    text-shadow: 0 2px 12px rgba(255,51,102,0.10);
}

.entry-content ul, .entry-content ol {
    padding-left: 2em;
    margin-bottom: 1.2em;
}

.entry-content li {
    margin-bottom: 0.5em;
}

.entry-content blockquote {
    background: rgba(255,51,102,0.07);
    border-left: 4px solid #ff3366;
    margin: 1.5em 0;
    padding: 1em 1.5em;
    border-radius: 12px;
    color: #ff6b6b;
    font-style: italic;
}

@media (max-width: 600px) {
    .entry-content {
        padding: 1.2em 0.5em 1.2em 0.5em;
        border-radius: 12px;
        font-size: 1rem;
    }
}

/* Flashy style for .comments-area */
.comments-area {
    background: rgba(30, 0, 40, 0.90);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255,51,102,0.13), 0 1.5px 10px rgba(255,51,102,0.08);
    padding: 2em 2em 1.5em 2em;
    margin: 2.5em 0 2em 0;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    transition: box-shadow 0.2s, border 0.2s;
}

.comments-area h2,
.comments-area h3,
.comments-area h4 {
    background: linear-gradient(45deg, #ff3366, #ff6b6b 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
    margin-top: 1.2em;
    margin-bottom: 0.7em;
    text-shadow: 0 2px 12px rgba(255,51,102,0.10);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    margin-bottom: 1.2em;
    padding: 1em 1.2em;
    box-shadow: 0 2px 8px rgba(255,51,102,0.08);
    border-left: 4px solid #ff3366;
    position: relative;
}

.comment-list .comment-author {
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.2em;
}

.comment-list .comment-meta {
    color: #e0e0e0;
    font-size: 0.95em;
    margin-bottom: 0.5em;
}

.comment-list .comment-content {
    color: #fff;
    font-size: 1.05em;
    line-height: 1.6;
}

.comment-list .reply a {
    color: #ff3366;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    padding: 4px 12px;
    background: rgba(255,51,102,0.09);
    transition: background 0.18s, color 0.18s;
    margin-left: 0.5em;
}

.comment-list .reply a:hover {
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: #fff;
}

.comment-form {
    margin-top: 2em;
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    padding: 1.5em 1em;
    box-shadow: 0 2px 8px rgba(255,51,102,0.07);
}

.comment-form label {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 0.5em;
    display: block;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid #ff3366;
    color: #fff;
    border-radius: 10px;
    padding: 0.7em 1em;
    margin-bottom: 1em;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1em;
    transition: border 0.2s, background 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border: 1.5px solid #ff6b6b;
    background: rgba(255,255,255,0.15);
    outline: none;
}

.comment-form input[type="submit"] {
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.7em 2em;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255,51,102,0.13);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.comment-form input[type="submit"]:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff3366);
    transform: scale(1.06);
}

@media (max-width: 600px) {
    .comments-area {
        padding: 1em 0.5em 1em 0.5em;
        border-radius: 12px;
    }
    .comment-form {
        padding: 1em 0.5em;
        border-radius: 10px;
    }
}

/* Flashy style for .breadcrumbs-area */
.breadcrumbs-area,
.wpst-breadcrumbs,
.breadcrumbs {
    background: rgba(30, 0, 40, 0.85);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(255,51,102,0.10), 0 1.5px 10px rgba(255,51,102,0.07);
    /* padding: 0.8em 1.5em; */
    margin: 1.5em 0 1.5em 0;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.6;
    border: 1.5px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(4px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5em;
}

.breadcrumbs-area a,
.wpst-breadcrumbs a,
.breadcrumbs a {
    color: #ff6b6b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s;
    background: none;
    padding: 2px 8px;
    border-radius: 8px;
}

.breadcrumbs-area a:hover,
.wpst-breadcrumbs a:hover,
.breadcrumbs a:hover {
    color: #fff;
    background: linear-gradient(90deg, #ff3366 0%, #ff6b6b 100%);
    text-decoration: none;
}

.breadcrumbs-area .separator,
.wpst-breadcrumbs .separator,
.breadcrumbs .separator {
    color: #ff3366;
    font-weight: 700;
    margin: 0 0.2em;
    font-size: 1.1em;
}

@media (max-width: 600px) {
    .breadcrumbs-area,
    .wpst-breadcrumbs,
    .breadcrumbs {
        padding: 0.5em 0.5em;
        font-size: 0.97rem;
        border-radius: 10px;
    }
}

/* Flashy style for #filters and .filters-options */
#filters {
    background: rgba(30, 0, 40, 0.90);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(255,51,102,0.12), 0 1.5px 10px rgba(255,51,102,0.08);
    padding: 1em 1.5em;
    margin: 1.5em 0 1.5em 0;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 1em;
    font-size: 1.08rem;
}

.filters-select {
    font-weight: 600;
    color: #ff6b6b;
    display: flex;
    align-items: center;
    gap: 1.2em;
    flex-wrap: wrap;
}

.filters-options {
    display: flex;
    gap: 0.5em;
    margin-left: 1.2em;
}

.filters-options span {
    display: inline-block;
}

.filters-options a {
    display: inline-block;
    padding: 0.5em 1.2em;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    color: #ff6b6b;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(255,51,102,0.08);
    border: 2px solid transparent;
}

.filters-options a:hover,
.filters-options a.active {
    background: linear-gradient(90deg, #ff3366 0%, #ff6b6b 100%);
    color: #fff;
    border: 2px solid #ff3366;
    box-shadow: 0 4px 18px rgba(255, 51, 102, 0.13);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
    #filters {
        flex-direction: column;
        align-items: stretch;
        padding: 0.7em 0.5em;
        font-size: 0.97rem;
    }
    .filters-select {
        flex-direction: column;
        gap: 0.5em;
        align-items: flex-start;
    }
    .filters-options {
        margin-left: 0;
        gap: 0.3em;
        flex-wrap: wrap;
    }
}

#filters .filters-options span {
    width: 160px;
    text-align: right;
    border-radius: 18px;
}

#filters .filters-options span, #filters .filters-select:hover .filters-options {
    display: block;
    border-radius: 8px;
}