* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 100px;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(158, 255, 108, 0.1);
}

.nav-link svg {
    width: 18px;
    height: 18px;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(158, 255, 108, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(158, 255, 108, 0.04) 1px, transparent 1px);
    background-size: 150px 150px;
    z-index: 0;
}

.grid-highlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.grid-cell {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.grid-cell.active {
    opacity: 1;
}

.container {
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 40px 20px;
    max-width: 1200px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid rgba(158, 255, 108, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 40px;
    background: rgba(158, 255, 108, 0.05);
    color: #9eff6c;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(158, 255, 108, 0.08);
    border-color: rgba(158, 255, 108, 0.4);
    transform: translateY(-2px);
}

.main-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.highlight {
    color: #9eff6c;
    font-weight: 700;
}

.subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: #7acc4a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(122, 204, 74, 0.25);
}

.btn-primary:hover {
    background: #8edb5f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 219, 95, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: #9eff6c;
    color: #9eff6c;
    box-shadow: 0 4px 12px rgba(158, 255, 108, 0.15);
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.features-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.features-subtitle {
    text-align: center;
    font-size: 16px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #a0a0a0;
}

.integrations-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.integrations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.integrations-text {
    padding-right: 40px;
}

.integrations-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

.integrations-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.integrations-description {
    font-size: 16px;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 50px;
}

.integrations-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.integration-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.integration-feature h4 {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.integrations-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 20px;
    height: 100%;
}

.carousel-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.1s linear;
}

.carousel-column:nth-child(1) {
    transform: translateY(-200px);
}

.carousel-column:nth-child(2) {
    transform: translateY(-50px);
}

.carousel-column:nth-child(3) {
    transform: translateY(-280px);
}

.carousel-item {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    flex-shrink: 0;
}


.stats-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: #252525;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.stat-description {
    font-size: 15px;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0;
}

.stats-info {
    padding-left: 40px;
}

.stats-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

.stats-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.stats-description {
    font-size: 16px;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 50px;
}

.stats-features {
    display: flex;
    gap: 40px;
}

.stats-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stats-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 15px;
}

.stats-feature-title {
    font-size: 14px;
    font-weight: 500;
    color: #a0a0a0;
    line-height: 1.4;
    margin: 0;
}

.cta-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-card {
    padding: 80px 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: #252525;
    text-align: center;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-description {
    font-size: 17px;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 60px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.cta-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-feature-text {
    font-size: 14px;
    line-height: 1.5;
    color: #b0b0b0;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.testimonials-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 80px;
}

.testimonials-container {
    overflow: hidden;
    margin-bottom: 40px;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    width: calc((100% - 30px) / 2);
    min-width: calc((100% - 30px) / 2);
    padding: 45px;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(158, 255, 108, 0.2);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.testimonial-role {
    font-size: 12px;
    font-weight: 500;
    color: #7a7a7a;
    letter-spacing: 0.5px;
    margin: 0;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #a8a8a8;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    border-color: #9eff6c;
    background: rgba(158, 255, 108, 0.1);
}

.tools-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tools-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

.tools-carousel-container {
    overflow: hidden;
    margin-bottom: 40px;
}

.tools-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.tool-card-new {
    min-width: calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
    background: #2d2d2d;
    border-radius: 20px;
    padding: 35px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(158, 255, 108, 0.15);
    color: #9eff6c;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 25px;
    width: fit-content;
}

.tool-badge svg {
    width: 16px;
    height: 16px;
}

.tool-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.tool-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0 0 30px 0;
}

.tool-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.tool-features li {
    font-size: 15px;
    color: #7a7a7a;
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
}

.tool-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url('alt.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 10px;
}

.tool-card-btn {
    width: 100%;
    padding: 16px;
    background: #6fc743;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tool-card-btn img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.tools-carousel-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.tools-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tools-nav-btn:hover {
    border-color: #9eff6c;
    background: rgba(158, 255, 108, 0.1);
}

.newsletter-section {
    padding: 120px 40px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: #202020;
}

.newsletter-section .newsletter-content {
    max-width: 1400px;
    margin: 0 auto;
}

.newsletter-content {
    text-align: center;
}

.newsletter-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.newsletter-description {
    font-size: 17px;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 50px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: #7a7a7a;
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    padding: 18px 40px;
    background: #6fc743;
    color: #ffffff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-success {
    display: none;
    margin-top: 20px;
    padding: 15px 30px;
    background: rgba(158, 255, 108, 0.1);
    border: 1px solid rgba(158, 255, 108, 0.3);
    border-radius: 8px;
    color: #9eff6c;
    font-size: 16px;
    font-weight: 500;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integrations-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .integrations-text {
        padding-right: 0;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .stats-info {
        padding-left: 0;
    }
    
    .tool-card-new {
        min-width: calc((100% - 30px) / 2);
        width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 48px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-section {
        padding: 80px 20px;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tool-card-new {
        min-width: 100%;
        width: 100%;
    }
    
    .testimonial-card {
        min-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 36px;
    }
    
    .badge {
        font-size: 12px;
        padding: 8px 20px;
    }
}

/* Tool Page Styles */
.tool-page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.back-button {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(42, 42, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #a0a0a0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.back-button svg {
    width: 20px;
    height: 20px;
}

.tool-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin-top: 20px;
}

.tool-form-card {
    background: rgba(42, 42, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.tool-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.tool-page-description {
    font-size: 16px;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0 0 40px 0;
}

.tool-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tool-input {
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
}

.tool-textarea {
    min-height: 120px;
    line-height: 1.5;
}

.tool-input::placeholder {
    color: #7a7a7a;
}

.tool-input:focus {
    border-color: #9eff6c;
    background: rgba(158, 255, 108, 0.05);
}

.tool-submit-btn {
    padding: 18px 24px;
    background: #7acc4a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(122, 204, 74, 0.25);
}

.tool-submit-btn:hover {
    background: #8edb5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 219, 95, 0.3);
}

.tool-submit-btn:active {
    transform: translateY(0);
}

.tool-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tool-video-card {
    background: rgba(42, 42, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    min-height: 400px;
}

.video-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.video-subtitle {
    font-size: 16px;
    color: #a0a0a0;
    margin: 0 0 40px 0;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #7acc4a;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(122, 204, 74, 0.3);
}

.video-play-btn:hover {
    background: #8edb5f;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(142, 219, 95, 0.4);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

@media (max-width: 1024px) {
    .tool-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tool-form-card,
    .tool-video-card {
        padding: 40px;
    }
    
    .tool-page-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .back-button {
        top: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .tool-form-card,
    .tool-video-card {
        padding: 30px;
    }
    
    .tool-page-title {
        font-size: 32px;
    }
    
    .tool-page-description {
        font-size: 15px;
    }
}

.custom-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    transition: top 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 350px;
}

.custom-notification.show {
    top: 40px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 28px;
    background: rgba(42, 42, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.notification-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-notification.success .notification-content {
    border-color: rgba(122, 204, 74, 0.3);
    background: rgba(122, 204, 74, 0.1);
}

.custom-notification.success .notification-icon {
    color: #7acc4a;
}

.custom-notification.success #notificationText {
    color: #9eff6c;
}

.custom-notification.error .notification-content {
    border-color: rgba(255, 82, 82, 0.3);
    background: rgba(255, 82, 82, 0.1);
}

.custom-notification.error .notification-icon {
    color: #ff5252;
}

.custom-notification.error #notificationText {
    color: #ff8a80;
}

#notificationText {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

