body {
    font-family: 'Manrope', sans-serif;
    background-color: #0c192c;
    color: #E0E0E0;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

.domains-background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0c192c;
    z-index: -1;
    overflow: hidden;
}

.domains-bubbles span {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    animation: domains-bubble-animate 15s linear infinite;
    --bubble-blue: #4fc3dc;
    --bubble-pink: #ff2d75;
}

.domains-bubbles span.blue {
    background: var(--bubble-blue);
    box-shadow: 0 0 0 10px #4fc3dc44, 0 0 50px var(--bubble-blue), 0 0 100px var(--bubble-blue);
}

.domains-bubbles span.pink {
    background: var(--bubble-pink);
    box-shadow: 0 0 0 10px #ff2d7544, 0 0 50px var(--bubble-pink), 0 0 100px var(--bubble-pink);
}

@keyframes domains-bubble-animate {
    0% {
        transform: translateY(0) scale(0);
    }
    100% {
        transform: translateY(-120vh) scale(1);
    }
}

.gradient-text {
    background: linear-gradient(90deg, #D059E8, #9D50F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animated-gradient-text {
    background: linear-gradient(90deg, #D059E8, #9D50F5, #D059E8);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 5s linear infinite;
}

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

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1.25rem 1rem;
    background-color: rgba(12, 25, 44, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(30 41 59);
}
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.download-button {
    background-color: #6D28D9;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.download-button:hover {
    background-color: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}
.download-button:active {
    transform: translateY(0) scale(0.98);
}

.cta-button-main {
    background-color: #10B981;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}
.cta-button-main:hover {
    background-color: #059669;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.hero-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(30, 41, 59, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: linear-gradient(to bottom, white 20%, transparent 100%);
}
.main-title {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeIn 0.8s ease-out forwards;
}
.hero-subtitle {
    font-size: 1.25rem;
    max-width: 56rem;
    margin: 0 auto 2.5rem;
    color: #cbd5e1;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.features-wrapper {
    position: relative;
    padding: 5rem 0;
}

.features-section {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}
.section-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.feature-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 1);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 0 30px rgba(157, 80, 245, 0.2), 0 10px 20px rgba(0,0,0,0.3);
}
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #6D28D9;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(109, 40, 217, 0.4);
}
.feature-icon .material-icons {
    font-size: 2rem;
    color: white;
}
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gallery-section {
    padding: 5rem 0;
    background-color: #0c101c;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.gallery-item {
    cursor: pointer;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgb(30 41 59);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.cta-section {
    padding: 5rem 0 7rem;
}
.main-footer {
    padding: 2rem 0;
    background-color: #06080d;
    border-top: 1px solid rgb(30 41 59);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.modal-overlay.active .modal-content {
    transform: scale(1);
    opacity: 1;
}
.modal-close-button {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: #a0aec0;
    cursor: pointer;
    transition: color 0.2s ease;
}
.modal-close-button:hover {
    color: white;
}