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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #eaeaea;
    line-height: 1.6;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(to right, #141e30, #243b55);
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.logo a {
    font-size: 30px;
    font-weight: bold;
    background: linear-gradient(to right, #f7971e, #ffd200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

nav ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 16px;
    border-radius: 6px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #2a2e4b;
    color: #ffd700;
    box-shadow: 0 0 8px #ffd70055;
}

/* Hero */
.hero {
    text-align: center;
    padding: 90px 20px;
    background: url('/images/rsps-bg.jpg') no-repeat center center/cover;
    color: #fff;
    box-shadow: inset 0 0 80px #000;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #000;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-inline: auto;
    text-shadow: 0 0 5px #000;
}

.btn, .animated-btn {
    padding: 14px 32px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
    box-shadow: 0 0 12px rgba(255, 65, 108, 0.3);
    text-decoration: none;
    display: inline-block;
}

.animated-btn:hover, .btn:hover {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    box-shadow: 0 0 20px #ff416c88;
}

/* Main Content */
main {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.content {
    width: 100%;
    max-width: 1000px;
    background: rgba(30, 30, 48, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

/* Sections & Cards */
.section-title {
    font-size: 32px;
    text-align: center;
    color: #f6c90e;
    margin-bottom: 20px;
    position: relative;
}
.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff6f61, #ffd700);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.card {
    background: rgba(30, 30, 48, 0.9);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    width: 280px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 24px rgba(255, 223, 0, 0.3);
}

.card h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.card p {
    color: #aaa;
    font-size: 15px;
}

/* News Panel */
.news-section {
    background: #181828;
    padding: 40px 20px;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.news-card {
    flex: 1 1 300px;
    background: #22223b;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.news-card h4 {
    color: #f6c90e;
    margin-bottom: 10px;
}

.news-card p {
    font-size: 15px;
    color: #ccc;
}

/* Footer */
footer {
    background: #0f0c29;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #222;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }

    nav ul li a {
        padding: 10px;
        width: 100%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

.hero {
    background: linear-gradient(135deg, #141e30, #243b55);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8);
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 40, 0.85);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(8px);
}

.hero-inner h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-inner .highlight {
    color: #f6c90e;
    text-shadow: 0 0 8px #f6c90e99;
}

.hero-inner p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f0c29;
    padding: 5px 5px;
}

.hero-inner {
    background: linear-gradient(135deg, #1f1f2f, #191935);
    padding: 20px 50px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.hero-inner h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-inner .highlight {
    color: #f6c90e;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.hero-inner p {
    color: #ccc;
    font-size: 17px;
    margin-bottom: 30px;
}

.animated-btn {
    padding: 14px 32px;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
}

.animated-btn:hover {
    background: linear-gradient(to right, #ff4b2b, #ff416c);
    box-shadow: 0 0 20px #ff4b2b99;
}
