@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #08090a;
    color: #a7a2a9;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 50px;
}

h1 {
    font-size: 3rem;
    color: #f4f6f6;
    text-shadow: 0 0 10px #575a5e, 0 0 20px #575a5e, 0 0 30px #575a5e, 0 0 40px #575a5e;
}

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

.item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(87,90,94);
    transition: transform 0.3s, box-shadow 0.3s;
}

.item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(167,162,169);
}

h2 {
    color: #f4f6f6;
    text-shadow: 0 0 5px #575a5e, 0 0 10px #575a5e;
}

p {
    font-size: 1.2rem;
    color: #ddd;
}

/* Animated Background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8), black);
    z-index: -1;
}

body::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(87,90,94, 0.2) 10px, rgba(87,90,94, 0.2) 20px);
    z-index: -2;
    animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 20px;
    border: 2px solid #f4f6f6;
    color: #f4f6f6;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(87,90,94, 0.2);
    transition: left 0.3s;
    z-index: -1;
}

.button:hover::before {
    left: 0;
}

.button:hover {
    background: rgba(34,40,35, 0.1);
    box-shadow: 0 0 20px #575a5e, 0 0 30px #575a5e, 0 0 40px #575a5e;
}
