/* Potrillos Custom Styles */
body {
    background: linear-gradient(135deg, #1a0033 0%, #3b0a6b 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

.hero-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/squad.png');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 50px 50px;
}

.navbar {
    background: rgba(26, 0, 51, 0.8) !important;
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #ff00aa;
    transition: background 0.3s;
}

.navbar .nav-link {
    font-weight: 600;
    margin: 0 10px;
    color: #fff !important;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
    color: #ff00aa !important;
}

.social-nav a {
    transition: transform 0.3s;
}

.social-nav a:hover {
    transform: scale(1.2);
}

.main-content-container {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/fortnite-hero.png');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff00aa;
    box-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
}

.btn-custom {
    background: rgba(255, 0, 170, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    border: 2px solid #ff00aa;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #00d4ff;
    color: #fff;
    transform: scale(1.1);
}

footer {
    padding: 40px 0;
    opacity: 0.7;
}

.img-fluid-custom {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Member Section Styles */
.member-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px; /* Offset for sticky nav */
}

.member-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
}

.content-box {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #ff00aa;
    backdrop-filter: blur(5px);
}

.text-end .content-box {
    border-left: none;
    border-right: 5px solid #ff00aa;
}

select#squadSelect:focus {
    box-shadow: 0 0 10px rgba(255, 0, 170, 0.5);
    background-color: rgba(26,0,51,0.9) !important;
}