* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #0a0e17;
color: #ffffff;
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
#app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
padding: 2rem;
position: relative;
z-index: 2;
}
.main-header {
text-align: center;
margin-bottom: 3rem;
max-width: 900px;
background: rgba(30, 35, 50, 0.85);
border-radius: 16px;
padding: 2.5rem;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 206, 0, 0.3);
}
.main-header h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
background: linear-gradient(135deg, #ffce00 0%, #ff9f00 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.subtitle {
font-size: 1.3rem;
color: #b0b7c3;
font-weight: 500;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.news-container {
width: 100%;
max-width: 1200px;
margin-bottom: 2rem;
}
.news-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.news-card {
background: rgba(30, 35, 50, 0.85);
border-radius: 16px;
padding: 2rem;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 2px solid;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.news-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, 
transparent, 
rgba(255, 255, 255, 0.1), 
transparent);
transition: left 0.6s ease;
}
.news-card:hover::before {
left: 100%;
}
.news-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}
.news-card.featured {
border-color: #ffce00;
background: rgba(40, 35, 30, 0.9);
}
.news-card.featured:hover {
box-shadow: 0 12px 32px rgba(255, 206, 0, 0.3);
}
.news-card.coming-soon {
border-color: #00e5ff;
background: rgba(25, 35, 50, 0.9);
}
.news-card.coming-soon:hover {
box-shadow: 0 12px 32px rgba(0, 229, 255, 0.3);
}
.news-badge {
display: inline-block;
background: linear-gradient(135deg, #ff2e63 0%, #e63946 100%);
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 1rem;
box-shadow: 0 4px 12px rgba(255, 46, 99, 0.3);
}
.news-card.coming-soon .news-badge {
background: linear-gradient(135deg, #00e5ff 0%, #457b9d 100%);
box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}
.news-card h2 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #ffffff;
line-height: 1.3;
}
.news-content p {
font-size: 1rem;
line-height: 1.6;
color: #b0b7c3;
margin-bottom: 1.5rem;
text-align: left;
}
.news-meta {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.news-date, .news-category {
background: rgba(255, 255, 255, 0.1);
padding: 0.4rem 0.8rem;
border-radius: 12px;
font-size: 0.85rem;
font-weight: 500;
}
.news-date {
color: #ffce00;
}
.news-category {
color: #00e5ff;
}
.navigation-section {
display: flex;
justify-content: center;
}
.btn {
display: flex;
align-items: center;
text-decoration: none;
padding: 1rem 2rem;
border-radius: 16px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: 2px solid;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
background: rgba(30, 35, 50, 0.85);
gap: 0.5rem;
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, 
transparent, 
rgba(255, 255, 255, 0.3), 
transparent);
transition: left 0.6s ease;
}
.btn:hover::before {
left: 100%;
}
.btn-back {
border-color: #b0b7c3;
color: #b0b7c3;
background: rgba(50, 50, 50, 0.9);
box-shadow: 0 8px 24px rgba(176, 183, 195, 0.2);
}
.btn-back:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(176, 183, 195, 0.4);
background: rgba(60, 60, 60, 0.95);
}
.btn-icon {
font-size: 1.2rem;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.btn-text {
font-size: 1.1rem;
font-weight: 600;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.main-footer {
text-align: center;
margin-top: auto;
background: rgba(30, 35, 50, 0.85);
border-radius: 16px;
padding: 1.5rem 2rem;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 2px solid rgba(0, 229, 255, 0.3);
width: 100%;
max-width: 800px;
}
.main-footer p {
color: #b0b7c3;
margin: 0.5rem 0;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
font-size: 0.9rem;
}
.background-container {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 1;
overflow: hidden;
}
.background-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, 
rgba(10, 14, 23, 0.95) 0%, 
rgba(26, 31, 46, 0.9) 50%, 
rgba(10, 14, 23, 0.95) 100%);
z-index: 1;
}
.background-image {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
object-fit: cover;
opacity: 0.3;
filter: blur(4px) brightness(0.8);
z-index: 0;
}
@media (max-width: 768px) {
#app {
padding: 1.5rem;
}
.news-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.news-card {
padding: 1.5rem;
}
.news-card h2 {
font-size: 1.3rem;
}
.news-content p {
font-size: 0.95rem;
}
.main-header {
padding: 1.5rem;
}
.btn {
padding: 0.9rem 1.5rem;
}
}
@media (max-width: 480px) {
#app {
padding: 1rem;
}
.main-header h1 {
font-size: 1.8rem;
}
.subtitle {
font-size: 1.1rem;
}
.news-card {
padding: 1.25rem;
}
.news-card h2 {
font-size: 1.2rem;
}
.news-meta {
flex-direction: column;
gap: 0.5rem;
}
.btn {
width: 100%;
justify-content: center;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.main-header {
animation: fadeInUp 0.8s ease-out forwards;
}
.news-grid {
animation: fadeInUp 0.8s ease-out 0.2s forwards;
opacity: 0;
}
.navigation-section {
animation: fadeInUp 0.8s ease-out 0.4s forwards;
opacity: 0;
}
.main-footer {
animation: fadeInUp 0.8s ease-out 0.6s forwards;
opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
}
}
.btn:focus, .news-card:focus {
outline: 3px solid #00e5ff;
outline-offset: 2px;
}
@media (min-aspect-ratio: 16/9) {
.background-image {
width: 100%;
height: auto;
}
}
@media (max-aspect-ratio: 16/9) {
.background-image {
width: auto;
height: 100%;
}
}