/* Sugar Daddy London - Main Stylesheet */
/* Inspired by EliteSingles design with luxury dating theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Header */
.header {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #ffd700;
    background-color: rgba(255,255,255,0.1);
}

.signup-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c1810 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== RESPONSIVE DESIGN & PC OPTIMIZATIONS ===== */

/* Desktop/PC Specific Styles (1200px and above) */
@media screen and (min-width: 1200px) {
    /* Enhanced container for large screens */
    .container {
        max-width: 1400px !important;
        padding: 0 3rem !important;
    }
    
    /* Hero section optimization for PC */
    .hero {
        height: 85vh !important;
        background-attachment: fixed;
    }
    
    .hero h1 {
        font-size: 4rem !important;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 1.4rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    /* Navigation enhancements */
    .nav-container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .nav-menu {
        gap: 2.5rem;
    }
    
    .nav-menu a {
        padding: 0.75rem 1.25rem;
        font-size: 1.05rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transform: translateY(-2px);
    }
    
    /* Section spacing optimization */
    .section {
        padding: 5rem 0 !important;
    }
    
    .section-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
    
    /* Grid optimizations for PC */
    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 3rem !important;
        max-width: 1200px;
        margin: 3rem auto 0;
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 3rem !important;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    /* Enhanced feature cards */
    .feature-card {
        padding: 3rem 2rem;
        min-height: 350px !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
    }
    
    /* Enhanced blog cards */
    .blog-card {
        min-height: 450px !important;
        transition: all 0.3s ease;
    }
    
    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    /* Enhanced buttons and CTAs */
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        min-width: 200px;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1.05rem;
    }
    
    /* Typography enhancements */
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    /* Blog cards optimization */
    .blog-card {
        min-height: 450px;
        display: flex;
        flex-direction: column;
    }
    
    .blog-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    /* Section spacing for PC */
    .section {
        padding: 5rem 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    /* Stats section enhancement */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }
}

/* Large Desktop (1400px and above) */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1600px;
        padding: 0 4rem;
    }
    
    .hero {
        height: 90vh;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero p {
        font-size: 1.5rem;
        max-width: 700px;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: 3.5rem;
        margin-bottom: 4rem;
    }
    
    .features-grid,
    .blog-grid {
        max-width: 1400px;
        gap: 4rem;
    }
    
    .feature-card {
        padding: 4rem 3rem;
        min-height: 400px;
    }
    
    .blog-card {
        min-height: 500px;
    }
    
    .nav-menu {
        gap: 3rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
}

/* Tablet Styles (768px to 1199px) */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .container {
        max-width: 1000px;
        padding: 0 2rem;
    }
    
    .hero {
        height: 75vh;
    }
    
    .hero h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.2rem;
        max-width: 500px;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        padding: 0.6rem 1rem;
        font-size: 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        min-height: 300px;
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(107, 70, 193, 0.15);
    }
    
    .blog-card {
        min-height: 400px;
        transition: all 0.3s ease;
    }
    
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1.05rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

/* Mobile Styles (767px and below) */
@media screen and (max-width: 767px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 1rem !important;
    }
    
    .hero {
        height: 70vh;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section {
        padding: 3rem 0 !important;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        text-align: center;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        min-height: auto;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .blog-card {
        min-height: auto;
        margin-bottom: 1rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
    }
    
    /* Typography adjustments for mobile */
    h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Mobile-specific spacing */
    .feature-card h3 {
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        margin-bottom: 1.5rem;
    }
    
    .blog-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/home.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c1810;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #6b46c1, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(90deg, #7b2ff2 0%, #f357a8 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.stats h3 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(60,0,60,0.25);
}

.stats p {
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 4px rgba(60,0,60,0.18);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Members Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.member-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.member-details {
    color: #666;
    margin-bottom: 1rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #6b46c1;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #2c1810;
    color: #fff;
    padding: 3rem 0 1rem;
}

/* Enhanced text readability for gradient backgrounds */
.success-hero, .search-hero, .hero-safety {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.success-hero h1, .search-hero h1, .hero-safety h1,
.success-hero p, .search-hero p, .hero-safety p {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* Success Story Page Optimizations */
.success-hero {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%) !important;
}
.success-hero h1, .success-hero p {
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5) !important;
    font-weight: 600 !important;
}
.success-stats .stat-number {
    color: #ffd700 !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3) !important;
    font-weight: bold !important;
}
.success-stats .stat-label {
    color: #555555 !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3) !important;
}
.featured-story {
    background: #f8f9fa !important;
}
.story-card {
    background: white !important;
    border: 1px solid #e9ecef !important;
}
.story-card h3 {
    color: #2c1810 !important;
    font-weight: bold !important;
}
.story-card p {
    color: #555 !important;
    line-height: 1.6 !important;
}
.story-tags .tag {
    background: #6b46c1 !important;
    color: white !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 15px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

/* Sugar Dating Page Optimizations */
.hero[style*="linear-gradient"] h1,
.hero[style*="linear-gradient"] p {
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6) !important;
    font-weight: 600 !important;
}
.toc-container[style*="background: #f8f9fa"] {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
}
.toc-container h2[style*="color: #6b46c1"] {
    color: #6b46c1 !important;
    font-weight: bold !important;
}
.toc-container a[style*="color: #6b46c1"] {
    color: #6b46c1 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}
.toc-container a[style*="color: #6b46c1"]:hover {
    background: rgba(107, 70, 193, 0.1) !important;
    border-radius: 5px !important;
}

/* Step numbers with gradient backgrounds */
.step-number[style*="background: linear-gradient"] {
    background: linear-gradient(45deg, #6b46c1, #9333ea) !important;
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3) !important;
    font-weight: bold !important;
}

/* Purple info boxes */
div[style*="background: #6b46c1"] {
    background: #6b46c1 !important;
    color: white !important;
}
div[style*="background: #6b46c1"] h4[style*="color: #ffd700"] {
    color: #ffd700 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3) !important;
    font-weight: bold !important;
}
div[style*="background: #6b46c1"] p {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2) !important;
}

/* Safety cards with colored borders */
.safety-card[style*="border-left: 5px solid"] h3 {
    font-weight: bold !important;
    text-shadow: none !important;
}
.safety-card[style*="border-left: 5px solid #10b981"] h3 {
    color: #10b981 !important;
}
.safety-card[style*="border-left: 5px solid #f59e0b"] h3 {
    color: #f59e0b !important;
}
.safety-card[style*="border-left: 5px solid #ef4444"] h3 {
    color: #ef4444 !important;
}

/* Relationship details boxes */
.relationship-details[style*="background: #f8f9fa"] {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
}
.relationship-details h4 {
    color: #2c1810 !important;
    font-weight: bold !important;
}
.relationship-details p {
    color: #555 !important;
}

/* Improve contrast for inline styled elements */
[style*="background: linear-gradient"] {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
}

/* Blog page specific optimizations */
.blog-card h3 {
    color: #2c1810 !important;
    font-weight: bold !important;
}
.blog-card p {
    color: #555 !important;
    line-height: 1.6 !important;
}
.blog-card .read-more {
    color: #6b46c1 !important;
    font-weight: bold !important;
}
.blog-card .read-more:hover {
    color: #9333ea !important;
    text-decoration: underline !important;
}

/* Blog detail page optimizations */
.blog-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/suagdraddy15.jpg') !important;
    color: white !important;
}
.blog-header h1 {
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7) !important;
    font-weight: bold !important;
}
.blog-header p {
    color: white !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5) !important;
}
.blog-content {
    background: white !important;
    color: #333 !important;
}
.blog-content h2, .blog-content h3, .blog-content h4 {
    color: #2c1810 !important;
    font-weight: bold !important;
}
.blog-content p {
    color: #555 !important;
    line-height: 1.7 !important;
}
.blog-meta {
    color: #666 !important;
    border-bottom: 1px solid #eee !important;
}
.table-of-contents {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
}
.table-of-contents h3 {
    color: #6b46c1 !important;
    font-weight: bold !important;
}
.table-of-contents a {
    color: #333 !important;
    font-weight: 500 !important;
}
.table-of-contents a:hover {
    color: #6b46c1 !important;
    background: rgba(107, 70, 193, 0.1) !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 5px !important;
}
.highlight-box {
    background: linear-gradient(135deg, #6b46c1, #9333ea) !important;
    color: white !important;
}
.highlight-box h3, .highlight-box h4 {
    color: #ffd700 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3) !important;
    font-weight: bold !important;
}
.highlight-box p {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2) !important;
}
.tip-box {
    background: #fff3cd !important;
    border-left: 4px solid #ffd700 !important;
    color: #856404 !important;
}
.tip-box h4 {
    color: #856404 !important;
    font-weight: bold !important;
}
.warning-box {
    background: #f8d7da !important;
    border-left: 4px solid #dc3545 !important;
    color: #721c24 !important;
}
.warning-box h4 {
    color: #721c24 !important;
    font-weight: bold !important;
}
.success-box {
    background: #d4edda !important;
    border-left: 4px solid #28a745 !important;
    color: #155724 !important;
}
.success-box h4 {
    color: #155724 !important;
    font-weight: bold !important;
}

/* Terms and legal pages optimizations */
.terms-section {
    background: white !important;
}
.terms-section h2[style*="color: #6b46c1"] {
    color: #6b46c1 !important;
    font-weight: bold !important;
    border-bottom: 2px solid #6b46c1 !important;
}
.terms-section h4[style*="color: #6b46c1"] {
    color: #6b46c1 !important;
    font-weight: bold !important;
}
.terms-section div[style*="background: white"] {
    background: white !important;
    color: #333 !important;
}
.terms-section div[style*="background: #f0f8ff"] {
    background: #f0f8ff !important;
    color: #0c5460 !important;
    border-left: 4px solid #6b46c1 !important;
}
.terms-section div[style*="background: #fff3cd"] {
    background: #fff3cd !important;
    color: #856404 !important;
    border-left: 4px solid #ffc107 !important;
}
.terms-section div[style*="background: #f8d7da"] {
    background: #f8d7da !important;
    color: #721c24 !important;
    border-left: 4px solid #dc3545 !important;
}
.terms-section div[style*="background: #d1ecf1"] {
    background: #d1ecf1 !important;
    color: #0c5460 !important;
    border-left: 4px solid #17a2b8 !important;
}
.terms-section div[style*="background: #d4edda"] {
    background: #d4edda !important;
    color: #155724 !important;
    border-left: 4px solid #28a745 !important;
}
/* ===== STYLE CONFLICT RESOLUTION & IMPORTANT OVERRIDES ===== */
/* Organized to prevent conflicts and ensure proper cascade */

/* Base important overrides - lowest priority */
[style*="color: #6b46c1"] {
    text-shadow: none;
    font-weight: bold;
}

/* Component-specific overrides - medium priority */
.signup-btn {
    color: #2c1810 !important;
    padding: 0.75rem 1.5rem !important;
}

/* Page-specific overrides - higher priority */
/* Success Story Page */
.success-hero {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%) !important;
}
.success-hero h1, .success-hero p {
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5) !important;
    font-weight: 600 !important;
}
.success-stats .stat-number {
    color: #ffd700 !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3) !important;
    font-weight: bold !important;
}
.success-stats .stat-label {
    color:#525050 !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3) !important;
}
.featured-story {
    background: #f8f9fa !important;
}
.story-card {
    background: white !important;
    border: 1px solid #e9ecef !important;
}
.story-card h3 {
    color: #2c1810 !important;
    font-weight: bold !important;
}
.story-card p {
    color: #555 !important;
    line-height: 1.6 !important;
}
.story-tags .tag {
    background: #6b46c1 !important;
    color: white !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 15px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

/* Sugar Dating Page */
.hero[style*="linear-gradient"] h1,
.hero[style*="linear-gradient"] p {
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6) !important;
    font-weight: 600 !important;
}
.toc-container[style*="background: #f8f9fa"] {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
}
.toc-container h2[style*="color: #6b46c1"] {
    color: #6b46c1 !important;
    font-weight: bold !important;
}
.toc-container a[style*="color: #6b46c1"] {
    color: #6b46c1 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}
.toc-container a[style*="color: #6b46c1"]:hover {
    background: rgba(107, 70, 193, 0.1) !important;
    border-radius: 5px !important;
}

/* Step and highlight sections */
.step-number[style*="background: linear-gradient"] {
    background: linear-gradient(45deg, #6b46c1, #9333ea) !important;
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3) !important;
    font-weight: bold !important;
}
div[style*="background: #6b46c1"] {
    background: #6b46c1 !important;
    color: white !important;
}
div[style*="background: #6b46c1"] h3,
div[style*="background: #6b46c1"] h4 {
    color: #ffd700 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3) !important;
    font-weight: bold !important;
}
div[style*="background: #6b46c1"] p {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2) !important;
}

/* Safety and relationship cards */
.safety-card[style*="border-left: 5px solid"] h4 {
    font-weight: bold !important;
    text-shadow: none !important;
}
.safety-card[style*="border-left: 5px solid #10b981"] h4 {
    color: #10b981 !important;
}
.safety-card[style*="border-left: 5px solid #f59e0b"] h4 {
    color: #f59e0b !important;
}
.safety-card[style*="border-left: 5px solid #ef4444"] h4 {
    color: #ef4444 !important;
}

.relationship-details {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
}
.relationship-details h3 {
    color: #2c1810 !important;
    font-weight: bold !important;
}
.relationship-details p {
    color: #555 !important;
}

/* Blog pages */
.blog-card h3 {
    color: #2c1810 !important;
    font-weight: bold !important;
}
.blog-card p {
    color: #555 !important;
    line-height: 1.6 !important;
}
.blog-card .read-more {
    color: #6b46c1 !important;
    font-weight: bold !important;
}
.blog-card .read-more:hover {
    color: #9333ea !important;
    text-decoration: underline !important;
}

/* Blog detail pages */
.blog-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/suagdraddy15.jpg') !important;
    color: white !important;
}
.blog-header h1 {
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7) !important;
    font-weight: bold !important;
}
.blog-header p {
    color: white !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5) !important;
}
.blog-content {
    background: white !important;
    color: #333 !important;
}
.blog-content h2, .blog-content h3, .blog-content h4 {
    color: #2c1810 !important;
    font-weight: bold !important;
}
.blog-content p {
    color: #555 !important;
    line-height: 1.7 !important;
}
.blog-meta {
    color: #666 !important;
    border-bottom: 1px solid #eee !important;
}
.table-of-contents {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
}
.table-of-contents h3 {
    color: #6b46c1 !important;
    font-weight: bold !important;
}
.table-of-contents a {
    color: #333 !important;
    font-weight: 500 !important;
}
.table-of-contents a:hover {
    color: #6b46c1 !important;
    background: rgba(107, 70, 193, 0.1) !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 5px !important;
}
.highlight-box {
    background: linear-gradient(135deg, #6b46c1, #9333ea) !important;
    color: white !important;
}
.highlight-box h3, .highlight-box h4 {
    color: #ffd700 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3) !important;
    font-weight: bold !important;
}
.highlight-box p {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2) !important;
}
.tip-box {
    background: #fff3cd !important;
    border-left: 4px solid #ffd700 !important;
    color: #856404 !important;
}
.tip-box h4 {
    color: #856404 !important;
    font-weight: bold !important;
}
.warning-box {
    background: #f8d7da !important;
    border-left: 4px solid #dc3545 !important;
    color: #721c24 !important;
}
.warning-box h4 {
    color: #721c24 !important;
    font-weight: bold !important;
}
.success-box {
    background: #d4edda !important;
    border-left: 4px solid #28a745 !important;
    color: #155724 !important;
}
.success-box h4 {
    color: #155724 !important;
    font-weight: bold !important;
}

/* Terms and legal pages */
.terms-section {
    background: white !important;
}
.terms-section h2[style*="color: #6b46c1"] {
    color: #6b46c1 !important;
    font-weight: bold !important;
    border-bottom: 2px solid #6b46c1 !important;
}
.terms-section h4[style*="color: #6b46c1"] {
    color: #6b46c1 !important;
    font-weight: bold !important;
}
.terms-section div[style*="background: white"] {
    background: white !important;
    color: #333 !important;
}
.terms-section div[style*="background: #f0f8ff"] {
    background: #f0f8ff !important;
    color: #0c5460 !important;
    border-left: 4px solid #6b46c1 !important;
}
.terms-section div[style*="background: #fff3cd"] {
    background: #fff3cd !important;
    color: #856404 !important;
    border-left: 4px solid #ffc107 !important;
}
.terms-section div[style*="background: #f8d7da"] {
    background: #f8d7da !important;
    color: #721c24 !important;
    border-left: 4px solid #dc3545 !important;
}
.terms-section div[style*="background: #d1ecf1"] {
    background: #d1ecf1 !important;
    color: #0c5460 !important;
    border-left: 4px solid #17a2b8 !important;
}
.terms-section div[style*="background: #d4edda"] {
    background: #d4edda !important;
    color: #155724 !important;
    border-left: 4px solid #28a745 !important;
}

/* Highest priority overrides - for critical fixes */
/* Text shadow fixes for specific backgrounds */
.hero[style*="background: linear-gradient"] h1 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}
.hero[style*="background: linear-gradient"] p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}
.hero[style*="background: url"] h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}
.hero[style*="background: url"] p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.section[style*="background: linear-gradient"] h2 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}
.section[style*="background: linear-gradient"] p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}
.section[style*="background: url"] h2,
.section[style*="background: url"] h3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}
.section[style*="background: url"] p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}
.section[style*="background: url"] .stat-number {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}
.section[style*="background: #6b46c1"] h2,
.section[style*="background: #6b46c1"] h3 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}
.section[style*="background: #6b46c1"] p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}
.section[style*="background: #9333ea"] h2,
.section[style*="background: #9333ea"] h3 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.section[style*="background: white"] h2,
.section[style*="background: white"] h3 {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5) !important;
}
.section[style*="background: #f8f9fa"] h2,
.section[style*="background: #f8f9fa"] h3 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* PC-specific important overrides - Merged with main PC styles */

/* Mobile-specific important overrides */
@media screen and (max-width: 767px) {
    .container {
        padding: 0 1rem !important;
    }
    
    .hero h1 {
        font-size: 2.5rem !important;
    }
    
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
    
    .section {
        padding: 3rem 0 !important;
    }
}
[style*="color: #ffd700"] {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Privacy summary section optimization */
.privacy-summary h2,
.privacy-summary h4,
.privacy-summary p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}

/* About page gradient sections */
[style*="background: linear-gradient(135deg, #6b46c1, #8b5cf6)"] h3,
[style*="background: linear-gradient(135deg, #6b46c1, #8b5cf6)"] p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}

/* Pride banner and rainbow elements */
[style*="background: linear-gradient(90deg, #e40303"] {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Step numbers in sugar dating guide */
.step-number {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* App feature icons */
[style*="background: linear-gradient(45deg, #6b46c1, #9333ea)"] {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}

/* Blog section gradient backgrounds optimization */
.section[style*="background: linear-gradient"][style*="color: white"] {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

.section[style*="background: linear-gradient"][style*="color: white"] h2,
.section[style*="background: linear-gradient"][style*="color: white"] h3,
.section[style*="background: linear-gradient"][style*="color: white"] p,
.section[style*="background: linear-gradient"][style*="color: white"] a {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    font-weight: 500;
}

/* Specific gradient color optimizations */
[style*="background: linear-gradient(135deg, #d63384, #e91e63)"] {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

[style*="background: linear-gradient(135deg, #17a2b8, #138496)"] {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Button and CTA optimization */
.cta-button {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.btn {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* App store buttons optimization */
[style*="background: #000"],
[style*="background: #01875f"] {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Dark text on light backgrounds */
[style*="color: #2c1810"] {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5) !important;
    font-weight: 600;
}

/* Feature icons optimization */
.feature-icon {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Pricing Section Styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #6b46c1, #9333ea);
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .slider {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.pricing-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    flex: 2;
}

.pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.pricing-card.featured {
    border: 2px solid #6b46c1;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #6b46c1, #9333ea);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c1810;
    margin-bottom: 1rem;
    text-align: center;
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.price-display .currency {
    font-size: 1.5rem;
    color: #6b46c1;
    font-weight: bold;
}

.price-display .amount {
    font-size: 3rem;
    font-weight: bold;
    color: #2c1810;
    line-height: 1;
}

.price-display .period {
    font-size: 1.1rem;
    color: #666;
    margin-left: 0.5rem;
}

.pricing-details {
    margin-bottom: 2rem;
}

.monthly-pricing, .annual-pricing {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-bottom: 1rem;
}

.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #6b46c1, #9333ea);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.plan-button.premium {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c1810;
}

.plan-button.premium:hover {
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.feature-highlight {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.15);
}

.feature-highlight i {
    font-size: 2.5rem;
    color: #6b46c1;
    margin-bottom: 1rem;
    display: block;
}

.feature-highlight h4 {
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.feature-highlight p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Pricing Styles */
@media screen and (max-width: 1024px) {
    .pricing-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        flex: none;
    }
    
    .pricing-features {
        flex: none;
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .feature-highlight {
        flex: 1;
        padding: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        flex: none;
    }
    
    .pricing-features {
        flex-direction: column;
        gap: 1.5rem;
        flex: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .price-display .amount {
        font-size: 2.5rem;
    }
    
    .plan-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-highlight {
        padding: 1.5rem;
    }
    
    .feature-highlight i {
        font-size: 2rem;
    }
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #6b46c1;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #6b46c1, #9333ea);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107,70,193,0.3);
}

.btn-gold {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c1810;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #6b46c1;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .features-grid,
    .members-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gold {
    color: #ffd700;
}

.bg-purple {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
}

.bg-white {
    background: #fff !important;
}
.bg-white, .bg-white * {
    color: #222 !important;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.p-2 {
    padding: 2rem;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Special Elements */
.verified-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.premium-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c1810;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price-tag {
    background: #6b46c1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin: 0.5rem 0;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #6b46c1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}