body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b1220;
    color: #e2e8f0;
}

header {
    background: rgba(2, 6, 23, 0.9);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e293b;
}

.logo {
    font-weight: bold;
    font-size: 20px;
}

nav a {
    color: #94a3b8;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: white;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.hero {
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    color: #94a3b8;
    max-width: 600px;
}

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

.card {
    background: #020617;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #334155;
}

img {
    width: 100%;
    border-radius: 8px;
}

footer {
    border-top: 1px solid #1e293b;
    padding: 30px;
    text-align: center;
    color: #64748b;
    margin-top: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #1e293b;
    background: #020617;
}

.project-card img {
    width: 100%;
    display: block;
    transition: 0.3s;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.project-info h3 {
    margin: 0;
    font-size: 16px;
}

.project-info p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #94a3b8;
}

.form-box {
    background: #020617;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    max-width: 600px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #94a3b8;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #1e293b;
    background: #0b1220;
    color: white;
}

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

button {
    background: #2563eb;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #1d4ed8;
}

.success-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(34,197,94,0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.form-note {
    font-size: 13px;
    color: #64748b;
    margin-top: 10px;
}

.hero-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 10px;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-secondary {
    border: 1px solid #1e293b;
    color: #94a3b8;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    font-size: 18px;
}

.stat span {
    display: block;
    font-size: 26px;
    color: white;
}

.featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.featured img {
    width: 100%;
    border-radius: 10px;
}

.support-box {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-item h4 {
    margin-bottom: 5px;
    color: white;
}

.status-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #1e293b;
}

.status-ok {
    color: #22c55e;
}

.ticket-success {
    display: none;
    margin-top: 15px;
    color: #22c55e;
}
