/*
Theme Name: Streamer Theme
Version: 7.0
*/

@font-face {
    font-family: 'BrittanySignature';
    src: url('fonts/BrittanySignature.ttf') format('truetype');
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    overflow-x: hidden;

    background:
    radial-gradient(circle at top left, rgba(168,85,247,0.22), transparent 35%),
    radial-gradient(circle at top right, rgba(255,0,200,0.18), transparent 35%),
    radial-gradient(circle at bottom left, rgba(109,40,255,0.15), transparent 35%),
    #050505;

    background-attachment: fixed;
}

.container {
    max-width: 1500px;
    margin: auto;
    padding: 0 24px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 140px;
    margin-bottom: 24px;

    font-family: 'BrittanySignature', sans-serif;
    font-weight: normal;
}

.hero-text p {
    font-size: 24px;
    color: #bdbdbd;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 30px;

    border-radius: 999px;

    background: linear-gradient(90deg,#6d28ff,#ff00c8);

    color: white;
    text-decoration: none;
    font-weight: 700;

    transition: .3s;
}

.btn:hover {
    transform: translateY(-4px);

    box-shadow: 0 0 35px rgba(168,85,247,.45);
}

.hero-image iframe {
    width: 100%;
    height: 360px;

    border: none;
    border-radius: 28px;

    box-shadow: 0 0 40px rgba(168,85,247,.25);
}

.section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 64px;
    margin-bottom: 70px;
}

.section-title i {
    margin-right: 18px;
}

.cards-3,
.cards-2 {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.cards-3 .card {
    width: 420px;
}

.cards-2 .card {
    width: 650px;
}

.card {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 28px;

    padding: 42px;

    min-height: 260px;

    backdrop-filter: blur(10px);

    transition: .3s;
}

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

    box-shadow: 0 0 40px rgba(168,85,247,.25);
}

.card h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.card p {
    font-size: 20px;
    color: #bdbdbd;
    line-height: 1.9;
}

.social-card {
    text-decoration: none;
    color: white !important;

    display: block;
}

.social-card:visited {
    color: white !important;
}

.social-card:hover {
    color: white !important;
}

.social-card .card {
    text-align: center;
    cursor: pointer;
}

.social-card h3 {
    display: flex;

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

    gap: 14px;
}

/* SETTINGS */

.settings-box {
    max-width: 1100px;
    margin: auto;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 28px;

    padding: 40px;

    backdrop-filter: blur(10px);
}

.settings-tabs {
    display: flex;

    justify-content: center;

    gap: 20px;

    margin-bottom: 40px;

    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 26px;

    border: none;

    border-radius: 999px;

    background: rgba(255,255,255,0.08);

    color: white;

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

    cursor: pointer;

    transition: .3s;
}

.tab-btn:hover {
    background: rgba(168,85,247,.3);
}

.tab-btn.active {
    background: linear-gradient(90deg,#6d28ff,#ff00c8);
}

.tab-content {
    display: none;

    text-align: center;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 42px;

    margin-bottom: 25px;
}

.tab-content p {
    font-size: 22px;

    color: #bdbdbd;

    line-height: 2;
}

/* ADVANCED */

.advanced-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-top: 40px;
}

.advanced-box {
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 20px;

    padding: 30px;
}

.advanced-box h4 {
    font-size: 28px;

    margin-bottom: 20px;

    text-align: center;
}

.advanced-box p {
    font-size: 18px;

    line-height: 2;
}

/* CROSSHAIR */

.copy-crosshair {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 30px;
}

#crosshair-code {
    font-size: 24px !important;

    color: white !important;
}

.copy-btn {
    padding: 16px 30px;

    border: none;

    border-radius: 999px;

    background: linear-gradient(90deg,#6d28ff,#ff00c8);

    color: white;

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

    cursor: pointer;

    transition: .3s;
}

.copy-btn:hover {
    transform: translateY(-4px);

    box-shadow: 0 0 30px rgba(168,85,247,.35);
}

.footer {
    padding: 60px 0;

    text-align: center;

    color: #777;
}

@media(max-width:1100px) {

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

.hero-text h1 {
    font-size: 80px;
}

.hero-text p {
    font-size: 18px;
}

.cards-3 .card,
.cards-2 .card {
    width: 100% !important;
}

.section-title {
    font-size: 42px;
}

.tab-content h3 {
    font-size: 32px;
}

.tab-content p {
    font-size: 18px;
}

.advanced-grid {
    grid-template-columns: 1fr;
}
	
.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

}