/* Custom Styles for JagoUnited */
/* Background hitam dengan efek modern */
body {
    background: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header dengan gradien ungu-hijau-pink */
header {
    background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 25%, #4a00e0 50%, #4a00e0 75%, #4a00e0 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(142,45,226,0.1), rgba(0,255,136,0.1), rgba(255,0,128,0.1));
    z-index: -1;
}
.card-text:last-child{
    color: #ffffff;
}
/* Nav dengan background gelap dan efek */
nav {
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

nav a {
    color: white;
    margin: 0 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a:hover {
    color: #00ff88;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0,255,136,0.5);
}

/* Section dengan background semi-transparan dan efek */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Hero section dengan gradien spektakuler */
.hero {
    background: #1a1a1a;
    padding: 6rem 3rem;
    text-align: center;
    color: white;
    border-radius: 20px;
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Button modern dengan gradien */
.btn-custom {
    background: linear-gradient(135deg, #8e2de2 0%, #00ff88 50%, #ff0080 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(142,45,226,0.3);
}

.btn-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(142,45,226,0.5);
    color: white;
}

/* Footer dengan gradien */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Heading dengan efek glow */
h1, h2, h3 {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
    font-weight: 700;
}

h2 {
    background: linear-gradient(135deg, #8e2de2, #00ff88, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* List styling modern */
ul {
    list-style: none;
    padding: 0;
}

ul li::before {
    content: '▶';
    color: #00ff88;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.navbar-nav li::before {
    display: none;
}

ul li strong {
    color: #ff0080;
}

/* Form styling modern */
form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

input[type="text"], input[type="email"], input[type="submit"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 1rem;
}

input[type="text"]::placeholder, input[type="email"]::placeholder {
    color: rgba(255,255,255,0.7);
}

input[type="submit"] {
    background: linear-gradient(135deg, #8e2de2 0%, #00ff88 50%, #ff0080 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142,45,226,0.4);
}

/* Card styling modern */
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.15);
}

.card-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Animasi fade-in untuk sections */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.display-4 {
    font-weight: bolder;
}