.homepage26 {
    font-family: 'Arial', sans-serif;
    background: #0e0e1a;
    color: #fff;
    margin: 0;
    padding: 0;
}
.homepage26 a {
    color: #00e0ff;
    text-decoration: none;
}
.homepage26 .homepage26-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00e0ff;
    color: #0e0e1a;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: bold;
    transition: 0.3s;
}
.homepage26 .homepage26-btn:hover {
    background: #ff007c;
    color: #fff;
}
.homepage26-hero {
    height: 70vh;
    background: url('https://pub-e0707ce7a8e04913869ea9b975fed537.r2.dev/ChatGPT%20Image%20Aug%2028%2C%202025%2C%2012_21_18%20AM.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.homepage26-hero h1 {
    font-size: 3rem;
}
.homepage26-hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.homepage26-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}
.homepage26-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.homepage26-news-card {
    background: #1a1a2e;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.2);
    transition: 0.3s;
}
.homepage26-news-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}
.homepage26-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 0, 124, 0.6);
}
.homepage26-news-card.homepage26-special-release {
    background: #1a1a2e;
    border: 2px solid #00e0ff;
}