body {
    font-family: Arial, sans-serif;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
}
.box {
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    max-width: 650px;
    width: 95%;
    box-sizing: border-box;
    text-align: center;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.grid a {
    display: block;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    color: #ff7f50;
    background: white;
    border: 3px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(135deg, #ff7f50, #1e90ff);
    transition: all 0.3s ease;
}
.grid a:hover {
    color: white;
    background: linear-gradient(135deg, #ff7f50, #1e90ff);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
