@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: linear-gradient(135deg, #2e003e, #804060);
    --text-color: #ededed;
    --main-color: #c8a2c8;
    --youtube-bg-1: #f7f5f3;
    --youtube-bg-2: #e8e3dd;
    --youtube-text: #8b4513;
    --youtube-accent: #ff0000;
    --youtube-dark: #654321;
    --youtube-light: #f9f7f4;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

/* Dynamic gradient background system */
body {
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Create overlay gradients for smooth transitions */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2e003e, #804060);
    z-index: -3;
    transition: opacity 0.8s ease-in-out;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1b103a, #5c2dbd, #9146ff);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* YouTube background using a dynamic element */
.youtube-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5e8d6, #ddcfc2, #d9cabc);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

/* TikTok background layer */
.tiktok-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d, #000000);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

/* Other Socials background layer */
.other-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0f2fe, #a7b7cb, #738297);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

body.other-theme .other-bg {
    opacity: 1;
}

body.other-theme .header {
    background: rgba(203, 213, 225, 0.9);
    transition: background 0.8s ease-in-out;
}

body.other-theme .header .logo,
body.other-theme .header .navbar a {
    color: #2d3748;
}

body.other-theme .header .navbar a:hover,
body.other-theme .header .navbar a.active {
    color: #667eea;
}

body.tiktok-theme .tiktok-bg {
    opacity: 1;
}

body.tiktok-theme .header {
    background: rgba(26, 26, 26, 0.9);
    transition: background 0.8s ease-in-out;
}

body.tiktok-theme .header .logo,
body.tiktok-theme .header .navbar a {
    color: white;
}

body.tiktok-theme .header .navbar a:hover,
body.tiktok-theme .header .navbar a.active {
    color: #00f2ea;
}

/* Theme activations */
body.twitch-theme::after {
    opacity: 1;
}

body.youtube-theme .youtube-bg {
    opacity: 1;
}

/* Alternative method using CSS custom properties for even smoother transitions */
body.smooth-transition {
    --gradient-stop-1: #2e003e;
    --gradient-stop-2: #804060;
    --gradient-stop-3: transparent;
    background: linear-gradient(135deg,
            var(--gradient-stop-1),
            var(--gradient-stop-2),
            var(--gradient-stop-3, transparent));
    transition:
        --gradient-stop-1 0.8s ease-in-out,
        --gradient-stop-2 0.8s ease-in-out,
        --gradient-stop-3 0.8s ease-in-out;
}

body.smooth-transition.twitch-theme {
    --gradient-stop-1: #1b103a;
    --gradient-stop-2: #5c2dbd;
    --gradient-stop-3: #9146ff;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(46, 0, 62, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.8s ease-in-out;
}

/* Dynamic header background */
body.twitch-theme .header {
    background: rgba(27, 16, 58, 0.9);
    transition: background 0.8s ease-in-out;
}

body.youtube-theme .header {
    background: #c1b0a0;
    color: var(--youtube-text);
    transition: all 0.8s ease-in-out;
}

body.youtube-theme .header .logo,
body.youtube-theme .header .navbar a {
    color: var(--youtube-text);
}

body.youtube-theme .header .navbar a:hover,
body.youtube-theme .header .navbar a.active {
    color: var(--youtube-accent);
}

.logo {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.8s ease-in-out;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.navbar a {
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 2.5rem;
    transition: .3s;
    white-space: nowrap;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;
}

section {
    min-height: 100vh;
    padding: 12rem 3% 2rem;
    position: relative;
}

.home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.home-content {
    flex: 1;
    max-width: 60rem;
    min-width: 300px;
}

.home-content h1 {
    font-size: clamp(3.2rem, 5vw, 5.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

.home-content h1 span {
    color: var(--main-color);
}

.home-content .text-animate {
    position: relative;
    margin-bottom: 2rem;
}

.home-content .text-animate h3 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: .7px var(--main-color);
    word-wrap: break-word;
}

.home-content p {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    margin: 2rem 0 4rem;
    line-height: 1.6;
    word-wrap: break-word;
    hyphens: auto;
}

.btn-box {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-box .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 14rem;
    height: 5rem;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: 0.8rem;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 600;
    letter-spacing: .1rem;
    color: #2e003e;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
    position: relative;
}

.btn-box .btn:hover {
    color: var(--main-color);
}

.btn-box .btn:nth-child(2) {
    background: transparent;
    color: var(--main-color);
}

.btn-box .btn:nth-child(2):hover {
    color: #2e003e;
}

.btn-box .btn:nth-child(2)::before {
    background: var(--main-color);
}

.btn-box .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .5s;
}

.btn-box .btn:hover::before {
    width: 100%;
}

.img-wrapper {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-box {
    position: relative;
    width: clamp(250px, 25vw, 350px);
    height: clamp(250px, 25vw, 350px);
    background: linear-gradient(135deg, #2e003e, #804060);
    border-radius: 50%;
    border: .5rem solid var(--main-color);
    box-shadow: 0 0 2rem rgba(200, 162, 200, 0.3), 0 0 4rem rgba(200, 162, 200, 0.2);
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.img-clip {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.img-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.twitch {
    padding: 12rem 3% 8rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.twitch-header {
    margin-bottom: 6rem;
}

.twitch-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.twitch-title h2 {
    font-size: clamp(4rem, 6vw, 7rem);
    font-weight: 800;
    color: #9146ff;
    text-shadow: 0 0 2rem rgba(145, 70, 255, 0.5);
    letter-spacing: -0.02em;
}

.twitch-logo {
    width: clamp(6rem, 8vw, 10rem);
    height: clamp(6rem, 8vw, 10rem);
    background: #9146ff;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1rem 3rem rgba(145, 70, 255, 0.4);
    transition: all 0.3s ease;
}

.twitch-logo:hover {
    transform: translateY(-0.5rem) scale(1.05);
    box-shadow: 0 2rem 4rem rgba(145, 70, 255, 0.6);
}

.twitch-logo svg {
    width: 60%;
    height: 60%;
    fill: white;
}

.twitch-description {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--text-color);
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.twitch-content {
    max-width: 140rem;
    margin: 0 auto;
}


.clip-thumbnail {
    background-size: cover;
    background-position: center;
}



.featured-clips {
    margin-bottom: 6rem;
}

.featured-clips h3 {
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    color: var(--main-color);
    margin-bottom: 4rem;
    font-weight: 600;
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    justify-items: center;
}

@media (max-width: 1024px) {
    .clips-grid {
        grid-template-columns: 1fr;
        max-width: 60rem;
        margin: 0 auto;
    }
}

.clip-card {
    background: rgba(46, 0, 62, 0.8);
    border-radius: 2rem;
    padding: 2rem;
    border: 0.2rem solid rgba(200, 162, 200, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

body.twitch-theme .clip-card {
    background: rgba(27, 16, 58, 0.8);
    border-color: rgba(145, 70, 255, 0.3);
    transition: all 0.8s ease-in-out;
}

.clip-card:hover {
    transform: translateY(-1rem);
    border-color: #9146ff;
    box-shadow: 0 2rem 4rem rgba(145, 70, 255, 0.3);
}

.clip-thumbnail {
    width: 100%;
    height: 20rem;
    background: linear-gradient(135deg, #9146ff, #c8a2c8);
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.clip-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clip-thumbnail:hover::before {
    opacity: 1;
}

.play-icon {
    font-size: 4rem;
    color: white;
    position: absolute;
    z-index: 2;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.clip-thumbnail:hover .play-icon {
    transform: scale(1.2);
    opacity: 1;
}

.clip-info h4 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.clip-info p {
    font-size: 1.4rem;
    color: rgba(237, 237, 237, 0.8);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.clip-stats {
    display: flex;
    gap: 2rem;
    font-size: 1.3rem;
    color: #9146ff;
    font-weight: 500;
}

.twitch-cta {
    background: rgba(145, 70, 255, 0.1);
    border-radius: 3rem;
    padding: 5rem 4rem;
    border: 0.2rem solid rgba(145, 70, 255, 0.3);
    backdrop-filter: blur(10px);
}

.twitch-cta h3 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.twitch-cta p {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: rgba(237, 237, 237, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.twitch-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 4rem;
    background: #9146ff;
    color: white;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1rem 3rem rgba(145, 70, 255, 0.4);
}

.twitch-btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 2rem 4rem rgba(145, 70, 255, 0.6);
    background: #a970ff;
}

.twitch-btn svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: white;
}

.stream-schedule {
    margin: 6rem 0;
    background: rgba(46, 0, 62, 0.6);
    border-radius: 2rem;
    padding: 4rem;
    border: 0.2rem solid rgba(200, 162, 200, 0.2);
    transition: all 0.8s ease-in-out;
}

body.twitch-theme .stream-schedule {
    background: rgba(27, 16, 58, 0.6);
    border-color: rgba(145, 70, 255, 0.2);
}

.stream-schedule h3 {
    font-size: clamp(2.4rem, 3vw, 3rem);
    color: var(--main-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
}

.schedule-item {
    background: rgba(145, 70, 255, 0.1);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 0.1rem solid rgba(145, 70, 255, 0.3);
}

.schedule-day {
    font-size: 1.6rem;
    color: #9146ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.schedule-time {
    font-size: 1.4rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* YouTube Section Styles */
.youtube {
    padding: 12rem 3% 8rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    color: var(--youtube-text);
}

.youtube-header {
    margin-bottom: 6rem;
}

.youtube-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.youtube-title h2 {
    font-size: clamp(4rem, 6vw, 7rem);
    font-weight: 800;
    color: var(--youtube-accent);
    text-shadow: 0 0 2rem rgba(255, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.youtube-logo {
    width: clamp(6rem, 8vw, 10rem);
    height: clamp(6rem, 8vw, 10rem);
    background: var(--youtube-accent);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1rem 3rem rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.youtube-logo:hover {
    transform: translateY(-0.5rem) scale(1.05);
    box-shadow: 0 2rem 4rem rgba(255, 0, 0, 0.5);
}

.youtube-logo svg {
    width: 60%;
    height: 60%;
    fill: white;
}

.youtube-description {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--youtube-dark);
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.youtube-content {
    max-width: 140rem;
    margin: 0 auto;
}

/* Featured Video Section */
.featured-video {
    margin-bottom: 6rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3rem;
    padding: 4rem;
    backdrop-filter: blur(10px);
    border: 0.2rem solid rgba(139, 69, 19, 0.2);
}

.video-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-thumbnail {
    width: 100%;
    height: 30rem;
    background: linear-gradient(135deg, #ff6b6b, #ff0000, #cc0000);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 4rem rgba(255, 0, 0, 0.3);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--youtube-accent);
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
    background: white;
}

.video-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--youtube-accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.video-details {
    text-align: left;
}

.video-details h3 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: var(--youtube-dark);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.video-details p {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: var(--youtube-text);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.video-stats {
    display: flex;
    gap: 3rem;
    font-size: 1.4rem;
    color: var(--youtube-accent);
    font-weight: 500;
    flex-wrap: wrap;
}

/* Video Gallery */
.video-gallery {
    margin-bottom: 6rem;
}

.gallery-title {
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    color: var(--youtube-dark);
    margin-bottom: 4rem;
    font-weight: 600;
    text-align: left;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

@media (max-width: 1200px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

.video-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    border: 0.1rem solid rgba(139, 69, 19, 0.1);
}

.video-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(139, 69, 19, 0.2);
}

.video-thumb {
    width: 100%;
    height: 18rem;
    background: linear-gradient(135deg, #ffb3b3, #ff6666, #ff0000);
    display: block;
    position: relative;
    cursor: pointer;
}

.duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.video-info {
    padding: 2rem;
    text-align: left;
}

.video-info h4 {
    font-size: 1.6rem;
    color: var(--youtube-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.video-meta span {
    font-size: 1.3rem;
    color: var(--youtube-text);
    opacity: 0.7;
}

/* Subscribe Section */
.youtube-subscribe {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.05));
    border-radius: 3rem;
    padding: 5rem 4rem;
    border: 0.2rem solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.subscribe-content h3 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: var(--youtube-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.subscribe-content p {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: var(--youtube-text);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.subscribe-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2.4rem, 3vw, 3.2rem);
    font-weight: 800;
    color: var(--youtube-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.4rem;
    color: var(--youtube-text);
    opacity: 0.8;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 4rem;
    background: var(--youtube-accent);
    color: white;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1rem 3rem rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 2rem 4rem rgba(255, 0, 0, 0.5);
    background: #e60000;
}

.youtube-btn svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: white;
}

/* Text wrapping and overflow fixes */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* TikTok Section Styles */
.tiktok {
    padding: 12rem 3% 8rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    color: white;
}

.tiktok-header {
    margin-bottom: 6rem;
}

.tiktok-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tiktok-title h2 {
    font-size: clamp(4rem, 6vw, 7rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 0 3rem rgba(255, 255, 255, 0.5);
    letter-spacing: -0.02em;
}

.tiktok-logo {
    width: clamp(6rem, 8vw, 10rem);
    height: clamp(6rem, 8vw, 10rem);
    background: linear-gradient(135deg, #00f2ea, #ff0050, #000000);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1rem 3rem rgba(255, 0, 80, 0.4);
    transition: all 0.3s ease;
}

.tiktok-logo:hover {
    transform: translateY(-0.5rem) scale(1.05);
    box-shadow: 0 2rem 4rem rgba(255, 0, 80, 0.6);
}

.tiktok-logo svg {
    width: 60%;
    height: 60%;
    fill: white;
}

.tiktok-description {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.tiktok-content {
    max-width: 140rem;
    margin: 0 auto;
}

/* Trending Videos Section */
.trending-videos {
    margin-bottom: 6rem;
}

.trending-videos h3 {
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    color: white;
    margin-bottom: 4rem;
    font-weight: 600;
}

.tiktok-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    justify-items: center;
}

@media (max-width: 1200px) {
    .tiktok-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tiktok-carousel {
        grid-template-columns: 1fr;
    }
}

.tiktok-video {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 0;
    border: 0.2rem solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 30rem;
    width: 100%;
    overflow: hidden;
}

.tiktok-video:hover {
    transform: translateY(-1rem);
    border-color: rgba(0, 242, 234, 0.6);
    box-shadow: 0 2rem 4rem rgba(0, 242, 234, 0.3);
}

.tiktok-thumb {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, #00f2ea, #ff0050, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.tiktok-play {
    width: 6rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    transition: all 0.3s ease;
}

.tiktok-thumb:hover .tiktok-play {
    transform: scale(1.1);
    background: white;
}

.view-count {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.tiktok-info {
    padding: 2rem;
    text-align: left;
}

.tiktok-info h4 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.engagement {
    display: flex;
    gap: 1.5rem;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* TikTok Bottom Grid */
.tiktok-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: stretch; 
}

.gaming-tiktok-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3rem;
    padding: 4rem 3rem;
    border: 0.2rem solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex; 
    flex-direction: column; 
}

.gaming-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gaming-header h3 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    color: white;
    font-weight: 700;
}

.gaming-tiktok-icon {
    width: 7rem;
    height: 7rem;
    background: #000000;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gaming-tiktok-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 1rem 2rem rgba(0, 242, 234, 0.4);
}

.gaming-tiktok-card p {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.gaming-tiktok-btn {
    display: inline-block;
    padding: 1.8rem 4rem;
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    color: white;
    border-radius: 5rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 2rem rgba(0, 242, 234, 0.3);
}

.gaming-tiktok-btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 3rem rgba(0, 242, 234, 0.5);
}

/* CTA Section - Updated */
.tiktok-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3rem;
    padding: 4rem 3rem;
    border: 0.2rem solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tiktok-cta h3 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}

.tiktok-cta p {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.tiktok-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 4rem;
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    color: white;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1rem 3rem rgba(0, 242, 234, 0.4);
}

.tiktok-btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 2rem 4rem rgba(0, 242, 234, 0.6);
}

.tiktok-btn svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: white;
}

/* Responsive Styles for TikTok */
@media (max-width: 991px) {
    .tiktok-bottom-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .tiktok {
        padding: 10rem 3% 6rem;
    }

    .tiktok-title {
        flex-direction: column;
        gap: 1.5rem;
    }

    .tiktok-cta {
        padding: 3rem 2rem;
        border-radius: 2rem;
    }
}

@media (max-width: 450px) {
    .tiktok-btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.6rem;
    }
}
/* Other Socials Section */
.other-socials {
    padding: 12rem 3% 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-main-title {
    font-size: clamp(4rem, 6vw, 7rem);
    font-weight: 800;
    text-align: center;
    color: #4a5568;
    margin-bottom: 6rem;
    letter-spacing: -0.02em;
}

.socials-split {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 130rem;
    margin: 0 auto;
}

.social-card {
    background: rgba(201, 219, 233, 0.93);
    border-radius: 3rem;
    padding: 4rem 3rem;
    border: 0.2rem solid rgba(74, 85, 104, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}



.social-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(74, 85, 104, 0.2);
    border-color: rgba(74, 85, 104, 0.4);
}

.social-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-header h3 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #2d3748;
}

.social-icon {
    width: 7rem;
    height: 7rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.discord-icon {
    background: #5865F2;
}

.discord-btn {
    background: #5865F2;
    box-shadow: 0 0.5rem 2rem rgba(88, 101, 242, 0.3);
}

.tiktok-icon {
    background: #000000;
}

.snap-icon {
    background: linear-gradient(135deg, #fffc00, #ffffff);
}

.fanfix-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.social-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.social-logo {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.tiktok-icon .social-logo {
    width: 80%;
    height: 80%;
}

.social-card p {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.social-btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    color: white;
    border-radius: 5rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tiktok-btn {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    box-shadow: 0 0.5rem 2rem rgba(0, 242, 234, 0.3);
}

.tiktok-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Add this line */
    gap: 1.5rem;
    padding: 1.8rem 4rem;
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    color: white;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    
}

.snap-btn {
    background: linear-gradient(135deg, #fffc00, #ffdd00);
    color: #000;
    box-shadow: 0 0.5rem 2rem rgba(255, 252, 0, 0.3);
}

.fanfix-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 0.5rem 2rem rgba(102, 126, 234, 0.3);
}

.social-btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .socials-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .other-socials {
        padding: 10rem 3% 6rem;
    }

    .social-card {
        padding: 3rem 2rem;
    }
}

/* Contact Section */
.contact {
    padding: 12rem 3% 8rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(4rem, 6vw, 7rem);
    font-weight: 800;
    color: var(--main-color);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--text-color);
    margin-bottom: 5rem;
    opacity: 0.9;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    max-width: 70rem;
    margin: 0 auto;
}

.contact-form {
    background: rgba(46, 0, 62, 0.6);
    padding: 4rem;
    border-radius: 3rem;
    border: 0.2rem solid rgba(200, 162, 200, 0.3);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.8rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 0.2rem solid rgba(200, 162, 200, 0.3);
    border-radius: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(237, 237, 237, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--main-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 15rem;
}

.submit-btn {
    width: 100%;
    padding: 1.8rem;
    background: var(--main-color);
    border: 0.2rem solid var(--main-color);
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2e003e;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background: transparent;
    color: var(--main-color);
    transform: translateY(-0.3rem);
}

/* Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 10rem 3% 6rem;
    }

    .contact-form {
        padding: 3rem 2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1.5rem;
        font-size: 1.5rem;
    }

    .submit-btn {
        padding: 1.5rem;
        font-size: 1.6rem;
    }
}

/* Tablet Styles */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 1.5rem 4%;
    }

    .navbar a {
        margin-left: 2rem;
        font-size: 1.5rem;
    }

    .home {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .home-content {
        order: 2;
        max-width: 100%;
    }

    .img-wrapper {
        order: 1;
    }

    .img-box {
        width: clamp(280px, 40vw, 400px);
        height: clamp(280px, 40vw, 400px);
    }

    .btn-box {
        justify-content: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    html {
        font-size: 50%;
    }

    .header {
        padding: 1.5rem 3%;
        background: rgba(46, 0, 62, 0.95);
    }

    body.twitch-theme .header {
        background: rgba(27, 16, 58, 0.95);
    }

    body.youtube-theme .header {
        background: rgba(245, 243, 240, 0.95);
    }

    body.youtube-theme .navbar {
        background: rgba(245, 243, 240, 0.95);
        border-top-color: rgba(255, 0, 0, 0.2);
    }

    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(46, 0, 62, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        border-top: .1rem solid rgba(200, 162, 200, 0.2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        display: none;
    }

    body.twitch-theme .navbar {
        background: rgba(27, 16, 58, 0.95);
        border-top-color: rgba(145, 70, 255, 0.2);
    }

    body.youtube-theme .navbar {
        background: rgba(245, 243, 240, 0.95);
        border-top-color: rgba(255, 0, 0, 0.2);
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        margin: 1rem 0;
        font-size: 1.8rem;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .home {
        gap: 3rem;
    }

    .home-content h1 {
        font-size: clamp(2.8rem, 8vw, 4.5rem);
        line-height: 1.1;
    }

    .home-content .text-animate h3 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .home-content p {
        font-size: clamp(1.4rem, 4vw, 1.6rem);
        margin: 1.5rem 0 3rem;
    }

    .btn-box {
        justify-content: center;
    }

    .btn-box .btn {
        min-width: 12rem;
        height: 4.5rem;
    }

    .img-box {
        width: clamp(200px, 60vw, 300px);
        height: clamp(200px, 60vw, 300px);
    }

    .twitch {
        padding: 10rem 3% 6rem;
    }

    .twitch-title {
        flex-direction: column;
        gap: 1.5rem;
    }

    .clips-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .clip-card {
        max-width: 100%;
    }

    .twitch-cta {
        padding: 3rem 2rem;
        border-radius: 2rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .youtube {
        padding: 10rem 3% 6rem;
    }

    .youtube-title {
        flex-direction: column;
        gap: 1.5rem;
    }

    .video-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .video-details {
        text-align: center;
    }

    .video-stats {
        justify-content: center;
        gap: 2rem;
    }


    .subscribe-stats {
        gap: 2rem;
    }

    .youtube-subscribe {
        padding: 3rem 2rem;
        border-radius: 2rem;
    }

    .gallery-title {
        text-align: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 450px) {
    .header {
        padding: 1rem 2%;
    }

    .logo {
        font-size: 2rem;
    }

    section {
        padding: 8rem 2% 2rem;
    }

    .btn-box {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .btn-box .btn {
        width: 80%;
        min-width: unset;
    }

    .img-box {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: clamp(200px, 70vw, 280px);
        height: clamp(200px, 70vw, 280px);
        border: .3rem solid var(--main-color);
    }

    .twitch-btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.6rem;
    }

    .stream-schedule {
        padding: 2.5rem 2rem;
    }

    .featured-video {
        padding: 2.5rem 2rem;
        border-radius: 2rem;
    }

    .video-thumbnail {
        height: 25rem;
    }

    .play-button {
        width: 6rem;
        height: 6rem;
        font-size: 2.5rem;
    }

    .youtube-btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.6rem;
    }
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}





