
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header {
    width: 100%;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2.5em;
    color: #f0f0f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.main-content,
.sidebar {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.main-content {
    flex: 0 0 68%;
}

.sidebar {
    flex: 0 0 28%;
}

.card {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

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

.button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background: #f39c12;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease;
}

.button:hover {
    transform: scale(1.1);
    background: #e67e22;
}

.neonglow {
    -webkit-animation: neonGlow 2s ease-in-out infinite alternate;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px #f39c12, 0 0 20px #e67e22, 0 0 30px #f39c12, 0 0 40px #e67e22;
    }
    to {
        text-shadow: 0 0 20px #f39c12, 0 0 40px #e67e22, 0 0 60px #f39c12, 0 0 80px #e67e22;
    }
}

@media (max-width: 1024px) {
    .main-content {
        flex: 0 0 100%;
    }
    .sidebar {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .main-content, .sidebar {
        padding: 15px;
    }
}

