/* GENEL */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f6f9;
    color: #333;
}

/* BAŞLIK */
.header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header h1 {
    margin: 0;
    font-size: 48px;
    letter-spacing: 1px;
}

.header p {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.9;
}

/* BUTONLAR */
.actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
}

.action-button {
    background: linear-gradient(145deg, #845ec2, #d65db1);
    color: white;
    font-size: 18px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.action-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25);
}

/* FOOTER */
.footer {
    text-align: center;
    font-size: 14px;
    color: #777;
    padding: 30px 0;
    border-top: 1px solid #ccc;
    background: #fafafa;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .header h1 {
        font-size: 32px;
    }

    .action-button {
        font-size: 16px;
        padding: 12px 24px;
    }
}
