body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start !important;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #1e1e1e 0%, #333 100%);
    color: #f0f0f0;
    padding-top: 100px !important;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    box-sizing: border-box;
}

.text-rainbow-animation {
    font-family: "Arial Black", sans-serif;
    font-size: clamp(16px, 6vw, 70px);
    line-height: 1.2;
    max-width: 100%;
    white-space: nowrap;
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-top: 0 !important;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.4));
}

.socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 2rem;
    animation: fadeIn 1s ease-in;
}

.socials a {
    color: #00aced;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 172, 237, 0.1);
}

.socials a:hover {
    color: #fff;
    background: rgba(0, 172, 237, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 172, 237, 0.4);
}

.video-wrap {
    width: 100%;
    max-width: 1100px;
    padding: 0 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.video-wrap h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.video-wrap video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrap video:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.download-section {
    width: 100%;
    max-width: 1100px;
    padding: 2rem 1rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.download-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.download-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.download-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.download-btn ion-icon {
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 900px;
    width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.feature-card ion-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Media Queries */
@media (max-width: 640px) {
    .page-wrapper {
        padding-top: 100px;
    }

    .socials {
        gap: 15px;
        font-size: 1.8rem;
    }
    
    .socials a {
        width: 45px;
        height: 45px;
    }
    
    .tabs {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .dropdown-btn {
        padding-right: 1.3rem !important;
    }
    
    .tab-text {
        gap: 0.05rem;
    }
    
    .tab-title {
        font-size: 0.9rem;
    }
    
    .tab-subtitle {
        font-size: 0.7rem;
    }
    
    .dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
        min-width: 220px;
    }
    
    .dropdown.open .dropdown-menu {
        transform: translateX(-50%);
    }

    .page-title {
        font-size: 2rem;
    }

    .version-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .email-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .email-link {
        font-size: 1.1rem;
        word-break: break-all;
    }
    
    .contact-example {
        padding: 1.5rem;
    }
    
    .example-box {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.beta-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #667eea;
    background: transparent;
    border: 2px solid #667eea;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.secondary-btn ion-icon {
    font-size: 1.3rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    padding: 0.5rem 1rem;
}

.tab-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    padding-right: 1.5rem !important;
}

.dropdown-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 0.3rem;
}

.dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 250px;
    background: rgba(30, 30, 30, 0.98);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.dropdown.open .dropdown-menu {
    display: flex;
    animation: fadeInDown 0.3s ease-out;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ccc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    color: #fff;
    transform: translateX(5px);
}

.dropdown-item ion-icon {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    flex: 1;
}

.dropdown-item-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.dropdown-item-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1;
}

.item-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: bold;
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

.new-item-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
}

.soon-item-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.tab-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.tab-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1;
}

.new-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.tab-btn ion-icon {
    font-size: 1.3rem;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.tab-btn-link {
    text-decoration: none;
}

.tab-content {
    display: none;
    width: 100%;
    animation: fadeInUp 0.5s ease-out;
    flex-direction: column;
    align-items: center;
}

.tab-content.active {
    display: flex;
}

/* Versions page specific styles */
.versions-container {
    width: 100%;
    max-width: 900px;
    padding: 2rem 1rem;
}

.page-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-box {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-box::placeholder {
    color: #888;
}

.search-box:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.search-icon {
    position: relative;
}

.search-icon ion-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #888;
    pointer-events: none;
}

.no-results {
    text-align: center;
    color: #999;
    padding: 3rem;
    font-size: 1.1rem;
}

.version-card.hidden {
    display: none;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #764ba2;
}

.back-link ion-icon {
    font-size: 1.2rem;
}

.version-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.version-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.version-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.badge-latest {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.badge-stable {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.badge-beta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
}

.badge-beta-latest {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    position: relative;
}

.badge-beta-latest::after {
    content: 'BETA';
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    font-weight: bold;
}

.version-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.version-notes {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.version-notes ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.version-notes li {
    margin-bottom: 0.3rem;
}

/* SHA256 checksum display */
.version-sha256 {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: left;
}

.sha256-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sha256-label ion-icon {
    font-size: 1.2rem;
}

.sha256-hash {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #aaa;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 5px;
    word-break: break-all;
    transition: all 0.2s ease;
    user-select: all;
}

.sha256-hash:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

/* Contact page styles */
.contact-info {
    max-width: 900px;
    margin: 2rem auto;
    width: 100%;
}

.email-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.email-display ion-icon {
    font-size: 2.5rem;
    color: #667eea;
}

.email-link {
    font-size: 1.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #764ba2;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.contact-example {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-example h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-example h3 ion-icon {
    font-size: 1.5rem;
    color: #667eea;
}

.contact-example p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.example-box {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
}

.example-box p {
    margin: 0.5rem 0;
    color: #ddd;
    font-size: 0.95rem;
}

.example-box strong {
    color: #667eea;
}

.contact-topics {
    margin-top: 2rem;
}

.contact-topics > h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-topics > h3 ion-icon {
    font-size: 1.8rem;
    color: #667eea;
}

/* About page styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.about-bio {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.about-bio h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-bio h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.about-bio p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Skills section */
.skills-section {
    margin-bottom: 3rem;
}

.skills-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.skills-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.skill-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}

.skill-category h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Stats section */
.stats-section {
    margin-bottom: 3rem;
}

.stats-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.stats-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.stat-card ion-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #aaa;
    font-size: 1rem;
}

/* Testimonials section */
.testimonials-section {
    margin-bottom: 3rem;
}

.testimonials-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.testimonials-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #ccc;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #999;
    font-size: 0.9rem;
    text-align: right;
}

/* Roadmap section */
.roadmap-section {
    margin-bottom: 3rem;
}

.roadmap-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.roadmap-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.roadmap-timeline {
    position: relative;
    padding-left: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, rgba(102, 126, 234, 0.3) 100%);
}

.roadmap-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.roadmap-icon {
    position: absolute;
    left: -2.4rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: #1e1e1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #667eea;
}

.roadmap-icon ion-icon {
    font-size: 1.5rem;
}

.roadmap-item.completed .roadmap-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.roadmap-item.completed .roadmap-icon ion-icon {
    color: #fff;
}

.roadmap-item.in-progress .roadmap-icon {
    border-color: #ffd700;
    animation: pulse 2s ease-in-out infinite;
}

.roadmap-item.in-progress .roadmap-icon ion-icon {
    color: #ffd700;
}

.roadmap-item.upcoming .roadmap-icon {
    border-color: rgba(255, 255, 255, 0.3);
}

.roadmap-item.upcoming .roadmap-icon ion-icon {
    color: rgba(255, 255, 255, 0.5);
}

.roadmap-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.roadmap-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.roadmap-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.roadmap-item.completed .roadmap-status {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.roadmap-item.in-progress .roadmap-status {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.roadmap-item.upcoming .roadmap-status {
    background: rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Newsletter section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.newsletter-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.newsletter-section > p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.newsletter-btn ion-icon {
    font-size: 1.2rem;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 500;
    display: none;
}

/* Blog styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: left;
    cursor: pointer;
}

.blog-post:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.blog-post h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-tag {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-post p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #999;
    font-size: 0.85rem;
}

.blog-meta ion-icon {
    font-size: 1rem;
}

/* FAQ styles */
.faq-container {
    max-width: 900px;
    margin: 2rem auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-category h2 ion-icon {
    font-size: 1.8rem;
    color: #667eea;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question ion-icon {
    font-size: 1.5rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question ion-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 4.5rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
    
    .roadmap-timeline {
        padding-left: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
