@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PT Sans', sans-serif;
}

body {
    color: #ddd;
    background-color: #1a1a1a;
    line-height: 1.6;
}

.hero {
    background: linear-gradient(135deg, #2e2e2e, #3e3e3e);
    color: #e0e0ff;
    text-align: center;
    padding: 70px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background-color: #5a3daa;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-size: 1rem;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn:hover:not(.disabled) {
    background-color: #7d5aff;
}

.email-anchor {
    color: #e0e0ff;
    text-decoration: none;
    font-weight: bold;
}

.email-anchor:hover {
    text-decoration: underline;
}

.section {
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 5px;
    padding: 50px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #e0e0ff;
}

.feature-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #292929;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.feature h3 {
    color: #ab82ff;
}

.footer {
    background-color: #333;
    color: #aaa;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.disabled {
    background-color: #5a3daaab;
    cursor: not-allowed;
}

.owl-carousel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.owl-carousel img:hover {
    transform: scale(1.05);
}

p {
    margin-bottom: 20px;
}

.mouse-glow {
    position: fixed;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(173, 120, 255, 0.5) 0%, rgba(0, 0, 0, 0) 80%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(15px);
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
    z-index: 9999;
}
