/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Container */
.main-container {
    min-height: 100vh;
}

/* Featured Section */
.featured-section {
    padding: 60px 0;
    background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/1.gif');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-media {
    position: relative;
    height: 500px;
    overflow: hidden;
    left: 50px;
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .featured-media img {
    transform: scale(1.05);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(45deg, #e91e63, #f44336);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.play-button-large {
    width: 100px;
    height: 100px;
    background: rgba(233, 30, 99, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
}

.play-button-large:hover {
    background: #e91e63;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.7);
}

.media-info {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    gap: 15px;
}

.duration, .quality {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.featured-content {
    padding: 50px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category-tag {
    background: linear-gradient(45deg, #e91e63, #e91e63);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.featured-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.featured-description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.7;
}

.post-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.post-stats span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.featured-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #e91e63, #e91e63);
    color: white;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #e91e63;
}

.btn-secondary:hover {
    background: #e91e63;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-icon:hover {
    background: #e91e63;
    border-color: #e91e63;
    transform: translateY(-2px);
}

/* Info Cards Section */
.info-cards-section {
    padding: 80px 0;
     background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/7.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #e91e63, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.info-content h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: #00bcd4;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Search and Filter Section */
.search-filter-section {
    padding: 60px 0;
    background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/1.gif');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.search-wrapper {
    max-width: 700px;
    margin: 0 auto 40px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: #00bcd4;
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.2);
}

.search-icon {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 15px;
    font-size: 1.1rem;
}

.search-bar input {
    flex: 1;
    padding: 18px 0;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
    outline: none;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    padding: 12px 20px;
    background: #00bcd4;
    border: none;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.search-btn:hover {
    background: #c2185b;
    transform: scale(1.05);
}

.filter-section {
    text-align: center;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 15px 25px;
   
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(45deg, #00bcd4);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0;
    
}


.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: #00bcd4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-top: 100px;
}

.view-controls {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.view-btn.active,
.view-btn:hover {
    background: #e91e63;
    border-color: #e91e63;
    transform: translateY(-2px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.25);
    border-color: rgba(233, 30, 99, 0.5);
}

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #e91e63, #e91e63);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00bcd4;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more {
    padding: 18px 40px;
    background: linear-gradient(45deg, #e91e63, #e91e63);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.5);
}

.load-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e91e63, #e91e63);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
     background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/4.gif');
background-size: cover;
background-position: center;
background-repeat: no-repeat;;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.category-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    height: 300px;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.3);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 35px;
}

.category-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00bcd4;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 1rem;
}

.category-count {
    color: #e91e63;
    font-weight: 700;
    font-size: 1rem;
}

/* Popular Section */
.popular-section {
    padding: 80px 0;
     background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/5.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;;
}

.popular-grid {
    display: grid;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.popular-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(233, 30, 99, 0.5);
}

.popular-rank {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #e91e63, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.popular-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.popular-info {
    flex: 1;
}

.popular-info h4 {
    color: #00bcd4;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.popular-info p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.popular-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.popular-price {
    color: #e91e63;
    font-weight: 700;
    font-size: 1.1rem;
}

.popular-rating {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-rating i {
    color: #ffc107;
}

.popular-trend {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.popular-trend.up {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.popular-trend.down {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

/* Detail Page Styles */
.detail-page {
    min-height: 100vh;
}

.detail-nav {
    padding: 25px 0;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.detail-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn {
    background: transparent;
    border: 2px solid #e91e63;
    color: #e91e63;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.back-btn:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-hero {
    padding: 150px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category-badge {
    background: linear-gradient(45deg, #e91e63, #e91e63);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.detail-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.detail-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



.detail-content {
    padding: 80px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.main-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.content-section {
    margin-bottom: 50px;
}

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

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #00bcd4;
}

.content-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.included-grid {
    display: grid;
    gap: 25px;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 30, 99, 0.3);
}

.included-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #e91e63, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.included-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.included-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: #e91e63;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.package-card.popular {
    border-color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e91e63;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
}

.package-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00bcd4;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.package-features i {
    color: #4caf50;
    font-size: 1rem;
}

.btn-package {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid #e91e63;
    color: #e91e63;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-package:hover,
.btn-package.primary {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
}

.gallery-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.main-gallery {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.main-gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-gallery:hover .gallery-overlay {
    opacity: 1;
}

.gallery-play-btn {
    width: 70px;
    height: 70px;
    background: rgba(233, 30, 99, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    border-color: #e91e63;
    transform: scale(1.05);
}

.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 35px;
}

.rating-overview {
    text-align: center;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 10px;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.rating-bar span:first-child {
    width: 70px;
    color: rgba(255, 255, 255, 0.7);
}

.rating-bar span:last-child {
    width: 50px;
    color: rgba(255, 255, 255, 0.7);
}

.bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #e91e63;
    transition: width 0.3s ease;
}

.reviews-list {
    display: grid;
    gap: 30px;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 5px;
}

.review-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.review-actions {
    display: flex;
    gap: 20px;
}

.review-helpful {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-helpful:hover {
    border-color: #e91e63;
    color: #e91e63;
}

.sidebar {
    display: grid;
    gap: 35px;
    height: fit-content;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.sidebar-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #e91e63;
}

.info-list {
    display: grid;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.info-value {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.related-list {
    display: grid;
    gap: 20px;
}

.related-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.related-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.related-price {
    color: #e91e63;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.related-rating {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-rating i {
    color: #ffc107;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background: #e91e63;
    transform: translateY(-2px);
}

.btn-support {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #e91e63, #e91e63);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
}

.more-content-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.more-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.more-content-item {
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-content-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

.more-content-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.more-content-item:hover img {
    transform: scale(1.1);
}

.more-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
}

.more-category {
    background: #e91e63;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 10px;
}

.more-content-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.more-price {
    color: #e91e63;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-post {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured-media {
        height: 400px;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .featured-title {
        font-size: 2.2rem;
    }
    
    .detail-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .featured-content {
        padding: 35px 25px;
    }
    
    .main-content {
        padding: 35px 25px;
    }
    
    .sidebar-card {
        padding: 25px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .more-content-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .featured-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .featured-title {
        font-size: 1.8rem;
    }
    
    .detail-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .more-content-grid {
        grid-template-columns: 1fr;
    }
    
    .search-bar {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .search-btn {
        border-radius: 0 0 20px 20px;
    }
    
    .media-player {
        height: 350px;
    }
    
    .play-btn-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Utility Classes */
.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-in {
    animation: slideIn 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


