* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #e0e0e0;
    line-height: 1.8;
    min-height: 100vh;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #f0abfc;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    background: rgba(42, 42, 62, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(192, 132, 252, 0.3);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #c084fc 0%, #e879f9 50%, #f0abfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #c084fc;
    margin-bottom: 2rem;
}

.hero .links {
    justify-content: center;
}

.links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #c084fc 0%, #e879f9 100%);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: inherit;
    line-height: inherit;
    font-size: inherit;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 132, 252, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #e879f9;
    color: #f0abfc;
}

.btn-outline:hover {
    background: rgba(232, 121, 249, 0.1);
}

.section {
    background: rgba(42, 42, 62, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(192, 132, 252, 0.2);
    backdrop-filter: blur(10px);
}

.section h2 {
    color: #e879f9;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section h2::before {
    content: '◆';
    color: #c084fc;
    font-size: 1.5rem;
}

.section p {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.highlight {
    color: #f0abfc;
    font-weight: 600;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.card {
    background: rgba(192, 132, 252, 0.05);
    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(192, 132, 252, 0.1);
    border-color: #e879f9;
    transform: translateY(-5px);
}

.card h3 {
    color: #f0abfc;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card li {
    color: #d1d5db;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e879f9;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.tag {
    background: linear-gradient(135deg, #c084fc 0%, #e879f9 100%);
    color: #1a1a2e;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.fun-fact {
    background: rgba(192, 132, 252, 0.05);
    border: 2px dashed rgba(232, 121, 249, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.fun-fact h4 {
    color: #f0abfc;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.fun-fact p {
    color: #d1d5db;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}

.contact-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c084fc 0%, #e879f9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(192, 132, 252, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    font-size: 1.5rem;
}

.contact-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(192, 132, 252, 0.6);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal {
    background: #2a2a3e;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(192, 132, 252, 0.3);
    backdrop-filter: blur(10px);
    animation: slideUp 0.3s ease;
    position: relative;
}

.modal-header {
    padding: 2rem;
    background: linear-gradient(135deg, #c084fc 0%, #f0abfc 100%);
    border-radius: 18px 18px 0 0;
    position: relative;
}

.modal-header h2 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(26, 26, 46, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(26, 26, 46, 0.5);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #f0abfc;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(192, 132, 252, 0.05);
    border: 2px solid rgba(192, 132, 252, 0.3);
    border-radius: 10px;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e879f9;
    background: rgba(192, 132, 252, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-submit {
    background: linear-gradient(135deg, #c084fc 0%, #e879f9 100%);
    color: #1a1a2e;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 132, 252, 0.4);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-cancel {
    background: transparent;
    border: 2px solid #e879f9;
    color: #f0abfc;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cancel:hover {
    background: rgba(232, 121, 249, 0.1);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: none;
    animation: slideDown 0.3s ease;
}

.alert.show {
    display: block;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-success {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: #86efac;
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}

.spinner {
    border: 3px solid rgba(192, 132, 252, 0.3);
    border-top: 3px solid #e879f9;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 1.5rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .modal {
        width: 95%;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    .contact-fab {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}