/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #ffd700;
    --accent-dark: #e6c200;
    --text-color: #f1f1f1;
    --text-light: #b0b0b0;
    --card-bg: #0f3460;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.gold-text {
    color: var(--accent-color);
}

/* Navigation */
.navbar {
    background-color: rgba(26, 26, 46, 0.95);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.gold-star {
    color: var(--accent-color);
    margin-left: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.subscribe-btn {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.subscribe-btn:hover {
    background-color: var(--accent-dark);
    color: var(--primary-color) !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--primary-color);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.gold-badge i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-image {
    height: 200px;
    background-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-excerpt {
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.about-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-frame {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /* This centers and scales your image to fill the circle */
    
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is the key property for images */
}


.gold-border {
	background-image: url('Ariz.jpg');
    background-size: cover;
    background-position: center;
    
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form {
    display: flex;
    margin-top: 30px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.subscribe-form button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0 30px;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.subscribe-form button:hover {
    background-color: var(--accent-dark);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.gold-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-form {
    flex: 1;
    max-width: 600px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--accent-dark);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: var(--secondary-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 300px;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom i {
    color: #ff4757;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.modal-form input {
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.modal-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn:hover {
    background-color: var(--accent-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container,
    .about-section .container,
    .contact-content {
        flex-direction: column;
    }
    
    .hero-content,
    .about-content,
    .contact-info,
    .contact-form {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .stats {
        justify-content: space-around;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo,
    .footer-links,
    .footer-social {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: 30px;
        margin-bottom: 15px;
    }
    
    .subscribe-form button {
        border-radius: 30px;
        padding: 15px;
        justify-content: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .gold-badge {
        padding: 15px 20px;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stat {
        margin-bottom: 20px;
    }
}
/* Blog Image with Play Button */
.blog-image {
    height: 200px;
    background-color: var(--accent-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.play-button i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 5px;
}

.blog-image:hover .play-button {
    opacity: 1;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

.blog-image:hover::after {
    opacity: 1;
}

/* Video Modal */
.video-modal-content {
    max-width: 800px;
    width: 95%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* Watch Video Button */
.watch-video-btn {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    transition: var(--transition);
}

.watch-video-btn:hover {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--accent-dark);
}

.watch-video-btn i {
    margin-left: 8px;
    font-size: 1.1rem;
}

/* Responsive adjustments for video */
@media (max-width: 768px) {
    .video-modal-content {
        padding: 20px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
}
/* Subscriber Counter */
.subscriber-counter {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.counter-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.counter-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.counter-info {
    flex: 1;
}

.counter-number {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.counter-info p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.counter-trend {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    color: #4CAF50;
}

.counter-trend i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.counter-trend span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Form Note */
.form-note {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    opacity: 0.8;
}

.form-note i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Subscription Success Message */
.subscription-success {
    display: none;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.subscription-success.show {
    display: block;
}

.success-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.subscription-success h3 {
    color: #4CAF50;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subscription Stats Section */
.subscription-stats {
    padding: 60px 0;
    background-color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-card p {
    margin-bottom: 0;
}

/* Animated Counter */
.animated-counter {
    display: inline-block;
}

/* Subscription Benefits */
.subscription-benefits {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.benefit-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.benefit-content h4 {
    margin-bottom: 8px;
    color: var(--text-color);
}

.benefit-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}
/* Premium Content Badges */
.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    animation: premiumGlow 2s infinite;
}

.premium-badge i {
    margin-right: 5px;
}

@keyframes premiumGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

/* Premium Card */
.premium-card {
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 100%;
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Premium Lock Icon */
.premium-lock {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
}

/* Premium Modal */
.premium-modal .modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border: 2px solid #FFD700;
    max-width: 500px;
}

.premium-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    margin: -40px -40px 20px -40px;
}

.premium-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.premium-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.premium-features li:last-child {
    border-bottom: none;
}

.premium-features i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.2rem;
}

.premium-pricing {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.premium-price {
    font-size: 3rem;
    color: #FFD700;
    font-weight: 700;
    text-align: center;
}

.premium-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: block;
    width: 100%;
    margin: 20px 0;
    transition: transform 0.3s ease;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Premium Tabs */
.premium-tabs {
    display: flex;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 20px;
}

.premium-tab {
    padding: 15px 30px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.premium-tab.active {
    border-bottom: 3px solid #FFD700;
    color: #FFD700;
}

.premium-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.premium-tab-content.active {
    display: block;
}
/* Admin Dashboard */
.admin-dashboard {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.admin-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.admin-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.admin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.admin-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Blog Management Table */
.blog-table-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    overflow-x: auto;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.blog-table th {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.blog-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.table-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.action-btn.edit {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.action-btn.delete {
    background: rgba(255, 87, 87, 0.2);
    color: #ff5757;
}

.action-btn.view {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
}

.action-btn:hover {
    transform: scale(1.1);
}

/* Blog Form Modal */
.blog-form-modal .modal-content {
    max-width: 800px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.form-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    margin: -40px -40px 30px -40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFD700;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Image Upload */
.image-upload {
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-upload:hover {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.image-upload i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.image-preview {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 200px;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Categories Tags */
.categories-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.category-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-tag .remove-tag {
    cursor: pointer;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.category-tag .remove-tag:hover {
    opacity: 1;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.stat-card i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: #FFD700;
    margin: 10px 0;
}

/* Search and Filter */
.search-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    color: #fff;
    padding-left: 45px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
}

.filter-select {
    min-width: 200px;
}

.filter-select select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    color: #fff;
}
/* Enhanced Social Media Section */
.social-media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.social-header {
    text-align: center;
    margin-bottom: 50px;
}

.social-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Individual platform colors */
.facebook .social-icon { background: #1877F2; color: white; }
.twitter .social-icon { background: #1DA1F2; color: white; }
.instagram .social-icon { 
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}
.linkedin .social-icon { background: #0077B5; color: white; }
.youtube .social-icon { background: #FF0000; color: white; }
.github .social-icon { background: #333; color: white; }
.whatsapp .social-icon { background: #25D366; color: white; }
.telegram .social-icon { background: #0088CC; color: white; }
.discord .social-icon { background: #7289DA; color: white; }
.reddit .social-icon { background: #FF4500; color: white; }
.pinterest .social-icon { background: #E60023; color: white; }
.tiktok .social-icon { background: #000000; color: white; }
.medium .social-icon { background: #00AB6C; color: white; }
.behance .social-icon { background: #0057FF; color: white; }
.dribbble .social-icon { background: #EA4C89; color: white; }

.social-card h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.social-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-link {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Social Stats */
.social-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.social-stat {
    text-align: center;
    padding: 20px;
    min-width: 150px;
}

.social-stat i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.social-stat h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.social-stat p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Social Links Manager (Admin) */
.social-manager {
    padding: 60px 0;
    background: var(--secondary-color);
}

.social-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.social-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.platform-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-option:hover {
    border-color: var(--accent-color);
    background: rgba(255, 215, 0, 0.05);
}

.platform-option.selected {
    border-color: var(--accent-color);
    background: rgba(255, 215, 0, 0.1);
}

.platform-option i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.platform-option span {
    display: block;
    font-size: 0.9rem;
}

/* Social Preview */
.social-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Responsive Social Media */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .social-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .social-stat {
        min-width: 200px;
    }
    
    .social-platforms-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* Animated Social Icons in Footer */
.footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social .social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social .social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-social .social-icons a:hover::before {
    left: 100%;
}

.footer-social .social-icons a:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
}

/* Platform-specific hover colors */
.footer-social .social-icons a.facebook:hover { background: #1877F2; color: white; }
.footer-social .social-icons a.twitter:hover { background: #1DA1F2; color: white; }
.footer-social .social-icons a.instagram:hover { 
    background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}
.footer-social .social-icons a.linkedin:hover { background: #0077B5; color: white; }
.footer-social .social-icons a.youtube:hover { background: #FF0000; color: white; }
.footer-social .social-icons a.github:hover { background: #333; color: white; }
