* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0f;
    color: #e4e4e7;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #e4e4e7;
    background: rgba(99, 102, 241, 0.1);
}

.nav-link.active {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.15);
}

.grid-highlights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-cell {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    opacity: 0;
    transition: opacity 1.5s ease;
}

.grid-cell.active {
    opacity: 1;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 180px 40px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    color: #a5b4fc;
    transition: all 0.3s ease;
}

.badge:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.main-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.highlight {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #9ca3af;
    margin-bottom: 50px;
}

.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    padding: 18px 44px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #e4e4e7;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.btn-secondary:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
}

.features-section {
    padding: 120px 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-title {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.features-subtitle {
    text-align: center;
    font-size: 18px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(17, 24, 39, 0.8);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    filter: brightness(1.1);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e4e4e7;
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
}

.integrations-section {
    padding: 120px 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.integrations-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.integrations-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6366f1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.integrations-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.integrations-description {
    font-size: 18px;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 50px;
}

.integrations-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.integration-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(17, 24, 39, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.integration-feature:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(8px);
}

.feature-icon-small {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.integration-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: #e4e4e7;
}

.integrations-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 24px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.carousel-track {
    display: flex;
    gap: 20px;
    height: 100%;
}

.carousel-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.1s linear;
}

.carousel-item {
    width: 140px;
    height: 140px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.carousel-item:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: scale(1.05);
}

.stats-section {
    padding: 120px 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.stats-image-wrapper {
    position: relative;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
}

.stats-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.stats-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6366f1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.stats-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.stats-description {
    font-size: 18px;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 32px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #9ca3af;
    font-weight: 500;
}

.cta-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
}

.cta-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6366f1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-section {
    padding: 120px 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6366f1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.testimonials-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #9ca3af;
    line-height: 1.7;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: calc(50% - 15px);
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 24px;
    padding: 40px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #e4e4e7;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #9ca3af;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.testimonials-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #e4e4e7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonials-nav-btn:hover:not(:disabled) {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

.testimonials-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tools-section {
    padding: 120px 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tools-header {
    text-align: center;
    margin-bottom: 80px;
}

.tools-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6366f1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tools-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tools-subtitle {
    font-size: 18px;
    color: #9ca3af;
    line-height: 1.7;
}

.tools-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.tools-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-card-new {
    min-width: calc(33.333% - 20px);
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: #a5b4fc;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 24px;
}

.tool-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #e4e4e7;
    margin-bottom: 12px;
}

.tool-card-desc {
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

.tool-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.tool-features li {
    padding: 12px 0;
    color: #d1d5db;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tool-features li::before {
    content: '→';
    color: #6366f1;
    font-weight: 700;
    font-size: 16px;
}

.tool-card-btn {
    padding: 16px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tool-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.tools-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.tools-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #e4e4e7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tools-nav-btn:hover:not(:disabled) {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

.tools-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.newsletter-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-content {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
}

.newsletter-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.newsletter-description {
    font-size: 16px;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 18px 24px;
    background: rgba(17, 24, 39, 0.6);
    border: none;
    color: #e4e4e7;
    font-size: 15px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-btn {
    padding: 18px 36px;
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    filter: brightness(1.1);
}

.newsletter-success {
    display: none;
    margin-top: 24px;
    padding: 16px 32px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #a5b4fc;
    font-size: 15px;
    font-weight: 600;
}

.newsletter-success.show {
    display: inline-block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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(17, 24, 39, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    color: #9ca3af;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: #e4e4e7;
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(17, 24, 39, 1);
}

.tool-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    margin-top: 20px;
}

.tool-form-card {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.tool-page-title {
    font-size: 42px;
    font-weight: 800;
    color: #e4e4e7;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.tool-page-description {
    font-size: 16px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0 0 40px 0;
}

.tool-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tool-input {
    padding: 18px 24px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    color: #e4e4e7;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.tool-input::placeholder {
    color: #6b7280;
}

.tool-input:focus {
    border-color: #6366f1;
    background: rgba(30, 41, 59, 0.8);
}

.tool-submit-btn {
    padding: 18px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.tool-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.tool-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.tool-video-card {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.video-title {
    font-size: 32px;
    font-weight: 700;
    color: #e4e4e7;
    margin: 0 0 10px 0;
}

.video-subtitle {
    font-size: 16px;
    color: #9ca3af;
    margin: 0 0 40px 0;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.custom-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 350px;
}

.custom-notification.show {
    top: 40px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 28px;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.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(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.1);
}

.custom-notification.success .notification-icon {
    color: #6366f1;
}

.custom-notification.success #notificationText {
    color: #a5b4fc;
}

.custom-notification.error .notification-content {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.1);
}

.custom-notification.error .notification-icon {
    color: #ef4444;
}

.custom-notification.error #notificationText {
    color: #fca5a5;
}

#notificationText {
    font-size: 15px;
    font-weight: 500;
}

.game-detected-message {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease;
}

.game-detected-message svg {
    color: #6366f1;
    flex-shrink: 0;
}

.game-detected-message span {
    color: #a5b4fc;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    width: 1000px;
    z-index: 10001;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(99, 102, 241, 0.4);
    transform: rotate(90deg);
}

#tutorialVideo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .navbar-content {
        padding: 20px 40px;
    }

    .integrations-content,
    .stats-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .tool-card-new {
        min-width: calc(50% - 15px);
    }
}

@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-grid {
        grid-template-columns: 1fr;
    }

    .tool-card-new,
    .testimonial-card {
        min-width: 100%;
    }

    .tool-content-wrapper {
        grid-template-columns: 1fr;
    }

    .back-button {
        top: 20px;
        left: 20px;
    }

    .navbar-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 36px;
    }

    .navbar-content {
        padding: 15px 20px;
    }
}