*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#050505;
    color:#fff;
    overflow-x:hidden;
    position:relative;
}

body::before{
    content:'';
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at 20% 20%, rgba(255,0,0,.15), transparent 30%),
    radial-gradient(circle at 80% 60%, rgba(255,0,0,.10), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(255,0,0,.08), transparent 30%);
    animation:bgMove 15s infinite alternate ease-in-out;
    z-index:-2;
}

body::after{
    content:'';
    position:fixed;
    width:100%;
    height:100%;
    background:url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    opacity:.15;
    z-index:-1;
}

@keyframes bgMove{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.2);
    }
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#ff0000;
    border-radius:10px;
}

/* Navbar */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,0,0,0.2);

    transition: 0.3s;
}



nav {
    max-width: 1300px;
    margin: auto;

    padding: 12px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 55px;
    height: 55px;

    object-fit: contain;

    filter: drop-shadow(0 0 12px red);
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.08);
}

.logo h2 {
    font-size: 20px;
    letter-spacing: 2px;
    color: white;
}

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

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;

    width: 0%;
    height: 2px;

    background: red;

    transition: 0.3s;
    transform: translateX(-50%);
}

nav ul li a:hover {
    color: #ff2a2a;
}

nav ul li a:hover::after {
    width: 100%;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

nav a:hover{
    color:#ff0000;
}

@media(max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Hero */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:120px 40px;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.85)
    ),
    url("hatter.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    z-index:-2;
}

.hero::after{
    content:'';
    position:absolute;

    width:700px;
    height:700px;

    background:red;

    filter:blur(220px);

    opacity:.15;

    top:-150px;
    right:-150px;

    z-index:-1;
}

.hero-container{
    max-width:1400px;
    width:100%;

    margin:auto;

    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-tag{
    display:inline-block;

    padding:10px 18px;

    border:1px solid rgba(255,0,0,.4);

    border-radius:50px;

    color:#ff4d4d;

    margin-bottom:25px;

    background:rgba(255,0,0,.08);
}

.hero-left h1{
    font-size:90px;
    line-height:1;
    margin-bottom:25px;
    font-weight:900;
}

.hero-left h1 span{
    display:block;
    color:#ff0000;

    text-shadow:
    0 0 15px red,
    0 0 35px red;
}

.hero-left p{
    font-size:20px;
    color:#bdbdbd;
    max-width:700px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.hero-btn{
    padding:16px 35px;
    border-radius:15px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.hero-btn.primary{
    background:red;
    color:white;
}

.hero-btn.primary:hover{
    transform:translateY(-4px);
    box-shadow:0 0 30px red;
}

.hero-btn.secondary{
    border:1px solid rgba(255,255,255,.2);
    color:white;
}

.hero-btn.secondary:hover{
    border-color:red;
    box-shadow:0 0 20px rgba(255,0,0,.4);
}

.server-panel{
    background:rgba(10,10,10,.85);

    border:1px solid rgba(255,0,0,.25);

    border-radius:25px;

    padding:35px;

    backdrop-filter:blur(20px);

    box-shadow:
    0 0 50px rgba(255,0,0,.08);
}

.server-header{
    text-align:center;
    font-size:22px;
    font-weight:800;
    margin-bottom:25px;
    color:#ff2d2d;
}

.server-row{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px;

    margin-bottom:12px;

    border-radius:15px;

    background:rgba(255,255,255,.03);
}

.server-row strong{
    color:#ff4d4d;
}

@media(max-width:1000px){

    .hero-container{
        grid-template-columns:1fr;
    }

    .hero-left h1{
        font-size:60px;
    }

    .hero-buttons{
        flex-direction:column;
    }

}

/* Buttons */

.btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    border-radius:15px;
    text-decoration:none;
    color:white;
    font-weight:700;
    letter-spacing:1px;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #ff0000,
        #b80000
    );
    border:none;
    transition:.4s;
    box-shadow:
    0 0 20px rgba(255,0,0,.35);
}

.btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.3),
        transparent
    );
}

.btn:hover::before{
    left:100%;
    transition:.8s;
}

.btn:hover{
    transform:translateY(-5px) scale(1.03);
    box-shadow:
    0 0 30px rgba(255,0,0,.6),
    0 0 60px rgba(255,0,0,.3);
}

.btn:active{
    transform:scale(.97);
}

/* Sections */

section{
    padding:100px 30px;
}

section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
    text-shadow:0 0 15px red;
}

/* Cards */

.cards {
    width: 100%;
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;

    justify-content: center;
    align-items: stretch;
}

.card,
.server-card {
    background: rgba(10,10,10,0.65);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,0,0,0.15);
    border-radius: 18px;

    padding: 25px;

    text-align: center;

    transition: 0.3s;

    position: relative;
    overflow: hidden;
}

.card:hover,
.server-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255,0,0,0.5);

    box-shadow: 0 0 25px rgba(255,0,0,0.2);
}

.card::before,
.server-card::before {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    background: red;
    opacity: 0.05;
    filter: blur(120px);

    top: -60px;
    right: -60px;

    pointer-events: none;
}

.card h3,
.server-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ff2a2a;
}

.card p,
.server-card p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.6;
}

/* Whitelist */

.whitelist{
    max-width:1100px;
    margin:auto;
    padding:120px 20px;
    position:relative;
}

.whitelist h2{
    text-align:center;
    font-size:48px;
    margin-bottom:50px;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:3px;
    text-shadow:
    0 0 10px #ff0000,
    0 0 30px #ff0000;
}

.whitelist-card{
    background:
    linear-gradient(
        145deg,
        rgba(15,15,15,.95),
        rgba(5,5,5,.95)
    );

    border:1px solid rgba(255,0,0,.25);

    border-radius:25px;

    padding:40px;

    backdrop-filter:blur(20px);

    box-shadow:
    0 0 40px rgba(255,0,0,.15),
    inset 0 0 40px rgba(255,0,0,.05);
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.whitelist input,
.whitelist textarea{

    width:100%;

    background:#0c0c0c;

    border:1px solid rgba(255,0,0,.15);

    border-radius:15px;

    padding:18px;

    color:white;

    font-size:15px;

    margin-bottom:18px;

    transition:.3s;
}

.whitelist input:hover,
.whitelist textarea:hover{
    border-color:#ff0000;
}

.whitelist input:focus,
.whitelist textarea:focus{

    outline:none;

    border-color:#ff0000;

    box-shadow:
    0 0 15px rgba(255,0,0,.5);

    transform:translateY(-2px);
}

.whitelist textarea{

    min-height:170px;

    resize:none;
}

.whitelist-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    font-size:18px;

    font-weight:700;

    color:white;

    cursor:pointer;

    background:
    linear-gradient(
        135deg,
        #ff0000,
        #800000
    );

    transition:.3s;
}

.whitelist-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 25px red,
    0 0 50px rgba(255,0,0,.4);
}

@media(max-width:900px){

    .grid-2{
        grid-template-columns:1fr;
    }

}

-------------------
.accordion{
    max-width:1200px;
    margin:auto;
}

.accordion-btn{
    width:100%;
    background:linear-gradient(135deg,#1a1a1a,#0d0d0d);
    border:1px solid rgba(255,0,0,.2);
    color:white;
    text-align:left;
    padding:20px;
    margin-bottom:10px;
    border-radius:15px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.accordion-btn:hover{
    border-color:red;
    transform:translateX(5px);
    box-shadow:0 0 20px rgba(255,0,0,.2);
}

.accordion-btn::after{
    content:"+";
    color:red;
    font-size:22px;
    transition:.3s;
}

.accordion-btn.active::after{
    transform:rotate(45deg);
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#0b0b0b;
    border-left:3px solid red;
    border-radius:0 0 15px 15px;
    margin-top:-8px;
    margin-bottom:10px;
}

.accordion-content p{
    padding:20px;
    color:#ccc;
    line-height:1.7;
}

/* Server */

#server{
    position:relative;
    padding:120px 30px;
}

#server::before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:1200px;
    height:700px;
    background:red;
    filter:blur(300px);
    opacity:.08;
    z-index:-1;
}

.server{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.server-card{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        rgba(20,20,20,.95),
        rgba(8,8,8,.95)
    );

    border:1px solid rgba(255,0,0,.15);

    border-radius:25px;

    padding:35px;

    transition:.4s;
}

.server-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        transparent,
        #ff0000,
        transparent
    );
}

.server-card:hover{
    transform:translateY(-10px);

    border-color:rgba(255,0,0,.5);

    box-shadow:
    0 0 40px rgba(255,0,0,.2),
    0 0 80px rgba(255,0,0,.08);
}

.server-card h3{
    font-size:28px;
    margin-bottom:20px;
    color:white;
    position:relative;
    display:inline-block;
}

.server-card h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:60px;
    height:3px;
    background:#ff0000;
    border-radius:20px;
}

.server-card p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:20px;
}

.server-card ol{
    padding-left:20px;
}

.server-card li{
    margin:10px 0;
    color:#cfcfcf;
}

.server-card code{
    display:flex;
    justify-content:center;
    align-items:center;

    margin-top:20px;

    padding:20px;

    background:#080808;

    border-radius:15px;

    border:1px solid rgba(255,0,0,.25);

    color:#ff4d4d;

    font-size:18px;
    font-weight:700;

    transition:.3s;
}

.server-card code:hover{
    border-color:red;

    box-shadow:
    0 0 25px rgba(255,0,0,.35);
}

.server-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:25px;
}

.stat{
    background:#0f0f0f;
    border-radius:15px;
    padding:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.05);
    transition:.3s;
}

.stat:hover{
    transform:translateY(-5px);
    border-color:rgba(255,0,0,.4);
}

.stat h4{
    color:#ff0000;
    font-size:28px;
    margin-bottom:5px;
}

.stat p{
    color:#888;
    margin:0;
}

/* Footer */

footer{
    border-top:1px solid rgba(255,0,0,.2);
    padding:40px;
    text-align:center;
    color:#999;
}

/* Toast */

#toast{
    position:fixed;
    top:100px;
    right:25px;
    background:#ff0000;
    color:white;
    padding:15px 25px;
    border-radius:10px;
    font-weight:bold;
    transform:translateX(400px);
    transition:.5s;
    z-index:99999;
    box-shadow:0 0 20px red;
}

#toast.show{
    transform:translateX(0);
}

/* Animations */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.card,
.server-card,
.accordion,
.whitelist{
    animation:fadeUp .8s ease;
}

/* Mobile */

@media(max-width:900px){

    nav{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

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

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

    section h2{
        font-size:30px;
    }

    .logo h2{
        font-size:18px;
    }

}

@media(max-width:600px){

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

    .btn{
        width:100%;
    }

    .hero-buttons{
        flex-direction:column;
    }

}

.accordion-content ul{
    padding:15px 25px 25px 45px;
}

.accordion-content li{
    margin:8px 0;
    color:#d0d0d0;
    line-height:1.6;
}

.accordion-content p{
    padding:15px 25px 0 25px;
    color:#ff4d4d;
    font-weight:700;
}

.rules,
.faq {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
}

.rules h2,
.faq h2,
.whitelist h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    letter-spacing: 1px;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

@media(max-width:800px){
    .grid-2{
        grid-template-columns:1fr;
    }
}

.logo-panel{
    display:flex;
    justify-content:center;
    align-items:center;

    background:none;
    border:none;
    box-shadow:none;
    backdrop-filter:none;

    min-height:auto;
    padding:0;
}

.logo-panel img{
    width:85%;
    max-width:450px;

    animation:logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

.small-answer{
    min-height:90px;
    height:90px;
}

.story-answer{
    min-height:220px;
    height:220px;
}
-----------------------------
/* ==========================
   WHITELIST QUESTION BOXES
========================== */

.question-box{
    margin:20px 0;
    padding:20px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,0,0,0.15);
    border-radius:16px;
    transition:.3s;
}

.question-box:hover{
    border-color:rgba(255,0,0,0.4);
    box-shadow:0 0 20px rgba(255,0,0,.15);
}

.question-box h3{
    color:#fff;
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
}

/* ==========================
   ANSWER BUTTONS
========================== */

.answer-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.answer-buttons input[type="radio"]{
    display:none;
}

.answer-buttons label{
    flex:1;
    min-width:180px;

    background:#111;
    border:1px solid rgba(255,0,0,.2);

    padding:14px;
    border-radius:12px;

    color:#fff;
    font-size:14px;
    font-weight:600;

    text-align:center;
    cursor:pointer;

    transition:.25s;
}

.answer-buttons label:hover{
    border-color:#ff0000;
    transform:translateY(-2px);
    box-shadow:0 0 15px rgba(255,0,0,.25);
}

/* KIVÁLASZTOTT VÁLASZ */

.answer-buttons input[type="radio"]:checked + label{
    background:linear-gradient(
        135deg,
        #ff0000,
        #a10000
    );

    border-color:#ff2a2a;

    box-shadow:
        0 0 20px rgba(255,0,0,.45),
        inset 0 0 10px rgba(255,255,255,.1);

    color:white;
}

/* MOBIL */

@media(max-width:768px){

    .answer-buttons{
        flex-direction:column;
    }

    .answer-buttons label{
        min-width:100%;
    }

}

/* Kérdések közötti távolság */

.question-box{
    margin:25px 0;
}

/* Kérdés címe és válaszok között */

.question-box h3{
    margin-bottom:18px;
}

/* Karakter történet előtt */

#q5{
    margin-top:25px;
}

/* Karakter történet és gomb között */

.whitelist-btn{
    margin-top:20px;
}

/* Minden whitelist elem között egységes távolság */

.whitelist form > input,
.whitelist form > textarea,
.whitelist form > .question-box{
    margin-bottom:18px;
}

#leadership{
    position:relative;
    padding:120px 30px;
}

#leadership::before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:1200px;
    height:700px;
    background:red;
    filter:blur(300px);
    opacity:.08;
    z-index:-1;
}

.leadership-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.leader-card{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        rgba(20,20,20,.95),
        rgba(8,8,8,.95)
    );

    border:1px solid rgba(255,0,0,.15);
    border-radius:25px;

    padding:35px 25px;

    text-align:center;

    transition:.4s;
}

.leader-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        transparent,
        #ff0000,
        transparent
    );
}

.leader-card:hover{
    transform:translateY(-10px);

    border-color:rgba(255,0,0,.5);

    box-shadow:
    0 0 40px rgba(255,0,0,.2),
    0 0 80px rgba(255,0,0,.08);
}

.leader-avatar{
    width:120px;
    height:120px;

    margin:0 auto 20px;

    border-radius:50%;
    overflow:hidden;

    border:3px solid rgba(255,0,0,.3);

    transition:.3s;
}

.leader-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.leader-card:hover .leader-avatar{
    border-color:#ff0000;

    box-shadow:
    0 0 30px rgba(255,0,0,.4);
}

.leader-card h3{
    color:white;
    font-size:28px;
    margin-bottom:15px;
}

.leader-role{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:1px;
}

.owner{
    color:#ffd700;
    background:rgba(255,215,0,.1);
    border:1px solid rgba(255,215,0,.3);
}

.co-owner{
    color:#ff4d4d;
    background:rgba(255,0,0,.1);
    border:1px solid rgba(255,0,0,.3);
}

.operator{
    color:#5eb8ff;
    background:rgba(0,150,255,.1);
    border:1px solid rgba(0,150,255,.3);
}

.manager{
    color:#c08cff;
    background:rgba(170,80,255,.1);
    border:1px solid rgba(170,80,255,.3);
}

.developer{
    color:#00e5a8;
    background:rgba(0,229,168,.1);
    border:1px solid rgba(0,229,168,.3);
}

/* =========================
   WEST HEAVEN GLOW FOOTER
========================= */

.site-footer{
    position:relative;
    padding:80px 30px;
    background:#050505;
    overflow:hidden;
    border-top:1px solid rgba(255,0,0,.15);
    text-align:center;
}

/* 🔥 animált glow háttér */
.footer-glow{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:900px;
    height:500px;

    background:radial-gradient(
        circle,
        rgba(255,0,0,.25),
        transparent 70%
    );

    filter:blur(80px);
    opacity:.5;
    z-index:0;

    animation:glowMove 6s ease-in-out infinite;
}

@keyframes glowMove{
    0%{
        transform:translate(-50%,-50%) scale(1);
        opacity:.35;
    }
    50%{
        transform:translate(-48%,-52%) scale(1.1);
        opacity:.6;
    }
    100%{
        transform:translate(-50%,-50%) scale(1);
        opacity:.35;
    }
}

/* szöveg */
.footer-disclaimer{
    position:relative;
    z-index:1;
    max-width:1100px;
    margin:auto;
    color:#8c8c8c;
    line-height:1.7;
    font-size:14px;
}

.footer-disclaimer p{
    margin-bottom:15px;
    transition:.3s;
}

.footer-disclaimer p:hover{
    color:#d0d0d0;
}

/* alsó rész */
.footer-bottom{
    position:relative;
    z-index:1;

    margin-top:30px;
    padding-top:20px;

    border-top:1px solid rgba(255,0,0,.15);

    color:#ff3b3b;
    font-weight:600;
    letter-spacing:1px;

    transition:.3s;
}

.footer-bottom:hover{
    text-shadow:0 0 15px rgba(255,0,0,.4);
}



/* =========================
   TEAMS / ACCORDION SECTION
========================= */

#teams{
    padding:120px 30px;
    position:relative;
}

.teams h2{
    text-align:center;
    margin-bottom:40px;
}

#teams .accordion-btn{
    width:100%;
    padding:18px 25px;
    margin-bottom:10px;

    background:linear-gradient(180deg, rgba(20,20,20,.95), rgba(8,8,8,.95));
    border:1px solid rgba(255,0,0,.15);
    border-radius:15px;

    color:white;
    font-size:18px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

#teams .accordion-btn:hover{
    border-color:rgba(255,0,0,.5);
    box-shadow:0 0 25px rgba(255,0,0,.15);
}

#teams .accordion-content{
    max-height:0;
    overflow:hidden;

    transition:max-height .4s ease;

    background:#0a0a0a;
    border-left:1px solid rgba(255,0,0,.2);
    border-right:1px solid rgba(255,0,0,.2);
    border-bottom:1px solid rgba(255,0,0,.2);

    border-radius:0 0 15px 15px;

    padding:0 25px;
}

#teams .accordion-content h4{
    margin-top:20px;
    color:#ff3b3b;
}

#teams .accordion-content p{
    color:#bdbdbd;
    line-height:1.7;
    margin-bottom:15px;
}
