/* CSS Variables */
:root {
    --primary-color: #FF6B00; /* Orange */
    --primary-dark: #E55E00;
    --secondary-color: #FFFFFF; /* White */
    --background-dark: #121212; /* Black */
    --background-light: #1E1E1E;
    --text-light: #FFFFFF;
    --text-dark: #CCCCCC;
    --text-muted: #999999;
    --border-color: #333333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
    --glow: 0 0 15px rgba(255, 107, 0, 0.5);
}

/* Custom Cursor styles removed */

/* Light Theme Variables */
[data-theme="light"] {
    --background-dark: #f8f9fa;
    --background-light: #ffffff;
    --text-light: #212529;
    --text-dark: #495057;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
}

/* Black Theme Variables */
[data-theme="black"] {
    --background-dark: #000000;
    --background-light: #0a0a0a;
    --text-light: #ffffff;
    --text-dark: #cccccc;
    --text-muted: #999999;
    --border-color: #333333;
}

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

/* Default cursor restored */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Header & Navigation */
header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-container > * {
    flex: 1;
}

.nav-container > .nav-menu {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-container > .nav-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.nav-container > .nav-buttons {
    display: flex;
    justify-content: flex-end;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    margin-right: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    justify-content: center;
}

.nav-item {
    margin: 0 1rem;
    position: relative;
}

.nav-item:last-child {
    margin-right: 2rem;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-item.active::after {
    width: 70%;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(255, 107, 0, 0.1);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 1rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    padding: 8rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 56px; /* Account for navbar only */
}

.hero:hover {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-dark) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.wishlist-btn {
    position: relative;
    overflow: hidden;
}

.wishlist-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.wishlist-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(50, 50);
        opacity: 0;
    }
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 107, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.2) 100%);
}

/* 404 Page */
.not-found {
    padding: 10rem 0;
    background-color: var(--background-dark);
    text-align: center;
}

.not-found h1 {
    font-size: 8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.not-found h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.not-found p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--background-light);
    margin-bottom: 0; /* Remove any default margin */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--background-dark);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.feature-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-color);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Detailed Features Page */
.features-detailed {
    padding: 5rem 0 2rem;
    background-color: var(--background-dark);
}

.features-detailed h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.features-subtitle {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.features-categories {
    margin-bottom: 3rem;
}

.category {
    margin-bottom: 4rem;
}

.category h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.features-cta {
    text-align: center;
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 3rem;
    margin-top: 2rem;
}

.features-cta h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.features-cta p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, #0a0a0a 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff8c00 100%);
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: linear-gradient(145deg, var(--background-light) 0%, var(--background-dark) 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 107, 0, 0.1);
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 550px;
    margin-top: 40px;
}

.pricing-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.08);
    z-index: 2;
    animation: pulse 3s infinite;
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.1) 0%, var(--background-dark) 100%);
    box-shadow: 0 25px 50px rgba(255, 107, 0, 0.2), 0 0 0 2px var(--primary-color);
    position: relative;
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -28px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    animation: bounce 1.5s ease infinite alternate;
    z-index: 10;
    overflow: visible;
    box-shadow: 0 8px 16px rgba(255, 107, 0, 0.4);
    transform: perspective(500px) rotateX(15deg);
    transform-origin: center top;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.price span {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.pricing-features li.not-included {
    color: var(--text-muted);
}

.pricing-features li.not-included::before {
    content: "✗";
    color: #ff4d4d;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    align-self: flex-end;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--primary-color);
    border-color: var(--primary-color);
}

.pricing-card.featured:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.3), 0 0 0 2px var(--primary-color);
}

/* Detailed Pricing Page */
.pricing-detailed {
    padding: 5rem 0 2rem;
    background-color: var(--background-dark);
}

.pricing-detailed h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.plan-description {
    color: var(--text-dark);
    margin-bottom: 2rem;
    min-height: 3rem;
}

.pricing-faq {
    margin-top: 5rem;
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 2rem;
}

.pricing-faq h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-dark);
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--background-dark);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    list-style: none;
    margin-top: 1rem;
}

.contact-details li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--background-light);
    color: var(--text-light);
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--background-light);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
    filter: grayscale(100%);
}

.footer-brand img:hover {
    filter: grayscale(0%);
}

.footer-brand p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    color: var(--text-muted);
    gap: 1rem;
}

.footer-copyright {
    flex: 1;
    min-width: 200px;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-license {
    flex: 1;
    min-width: 200px;
    text-align: right;
}

.footer-license .license-info {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.footer-license .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

.license-info {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.license-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.license-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 8rem 0 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .about-content {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-license {
        text-align: center;
    }
    
    .not-found h1 {
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.75rem;
    }
    
    .not-found h1 {
        font-size: 4rem;
    }
    
    .not-found h2 {
        font-size: 2rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0) rotateX(15deg);
    }
    100% {
        transform: translateY(-5px) rotateX(15deg);
    }
}

/* Pricing Badges */
.pricing-badge {
    background: linear-gradient(135deg, var(--background-dark) 0%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    border: none;
}

.dual-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    border: none;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 107, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 107, 0, 0.8), 0 0 30px rgba(255, 107, 0, 0.2);
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 107, 0, 0.5);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cardHover {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-5px) rotate(1deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Wishlist Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: var(--background-dark);
    margin: 15% auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideInUp 0.3s ease-out;
}

.close {
    color: var(--text-muted);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close:hover,
.close:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-content h2 {
    margin-top: 0;
    text-align: center;
}

.modal-content p {
    text-align: center;
    margin-bottom: 2rem;
}

#wishlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#wishlist-email {
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--background-light);
    color: var(--text-light);
    font-size: 1rem;
}

#wishlist-email:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

/* Donation Popup */
.donation-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.donation-popup.with-announcement {
    bottom: 60px; /* When announcement bar is visible */
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.donation-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.donation-content {
    background: var(--background-dark);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    max-width: 300px;
    position: relative;
}

.donation-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.donation-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.donation-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.donation-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.donation-content .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Announcements Carousel */
.announcements-carousel {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0 0;
    text-align: right;
    font-size: 0.85rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    height: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.announcements-carousel.hidden {
    transform: translateY(100%);
}

.announcement-status {
    padding: 0 1rem;
    font-weight: 600;
    background-color: transparent;
    z-index: 2;
}

.announcement-close {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.announcement-close:hover {
    opacity: 1;
}

.announcement-slides {
    position: relative;
    height: 32px;
    overflow: hidden;
    flex: 1;
    margin-left: auto;
}

.announcement-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
}

.announcement-slide.active {
    opacity: 1;
}

.announcements-carousel p {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.announcements-carousel i {
    margin-right: 0.5rem;
}



/* Project Status Section */
.project-status {
    background-color: var(--background-light);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.status-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.status-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.status-text h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.status-text p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.status-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Social Media Platforms Carousel */
.social-platforms-carousel {
    margin: 3rem 0 0 0; /* Add top margin to create space between feature cards and carousel */
    padding: 0 0 1.5rem 0; /* Add bottom padding to create space below the carousel */
    background-color: #1E1E1E;
    border-radius: 0;
    border: none;
    border-top: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 100px; /* Increase height to prevent clipping */
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    text-shadow: none !important;
    overflow: hidden; /* Ensure smooth clipping */
}

.social-platforms-carousel h3 {
    text-align: center;
    margin: 0 0 1rem 0; /* Add bottom margin to create space below the title */
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 1rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    border: none;
    border-top: none;
    background-color: #1E1E1E;
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%); /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
    mask-mode: alpha;
    -webkit-mask-mode: alpha;
}

.carousel-wrapper {
    display: flex;
    gap: 1rem;
    animation: scroll 30s linear infinite; /* Slower, smoother animation */
    will-change: transform; /* Optimize for performance */
    backface-visibility: hidden; /* Reduce flickering */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Add a reverse scroll animation for seamless looping */
@keyframes scrollReverse {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.carousel-wrapper:hover {
    animation-play-state: paused;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother easing function */
    height: 100%;
    will-change: transform; /* Optimize for performance */
}

.platform-card:hover {
    transform: translateY(-5px) scale(1.05); /* Enhanced hover effect */
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother easing */
}

.platform-icon {
    font-size: 2rem;
    margin-bottom: 0;
    color: var(--primary-color);
    height: calc(100% - 10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth color transition */
    filter: drop-shadow(0 0 2px rgba(255, 107, 0, 0.3)); /* Subtle glow effect */
}

.platform-card span {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.5rem;
    text-align: center;
    line-height: 1;
    margin-top: 0;
    height: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth text transition */
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); /* Subtle text glow */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .status-content {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-wrapper {
        gap: 0;
        animation: scroll 40s linear infinite; /* Even slower animation on mobile for smoother feel */
    }
    
    .platform-card {
        min-width: 70px;
        padding: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Maintain smooth transitions */
    }
    
    .platform-icon {
        font-size: 1.5rem;
        filter: drop-shadow(0 0 1px rgba(255, 107, 0, 0.2)); /* Adjusted glow for mobile */
    }
    
    .platform-card span {
        font-size: 0.4rem;
        margin-top: 0;
        text-shadow: 0 0 1px rgba(255, 255, 255, 0.1); /* Adjusted text glow for mobile */
    }
}