:root {
    --bg-color: #000000;
    --card-bg: #0f0f0f;
    --card-hover-bg: #151515;
    --border-color: rgba(255, 255, 255, 0.08);
    --accent-color: #ffcc00;
    --accent-hover: #e6b800;
    --accent-glow: rgba(255, 204, 0, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --glass-blur: blur(25px);
    --section-gap: 40px;
}

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Manrope', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Unbounded', sans-serif;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

header {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 16px;
}

.header-logo-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-book {
    text-transform: lowercase;
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
}

.user-info {
    text-align: right;
}

.user-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.user-balance {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.user-balance strong {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.studio-hero {
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 50%, rgba(255, 204, 0, 0.03) 0%, #000 100%);
    padding: 60px 0;
    overflow: hidden;
}

.studio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero-main-container {
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 0 4rem;
}

.hero-left {
    flex: 0 1 auto;
    width: 100%;
    max-width: 720px;
    z-index: 2;
}

.hero-marketing-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.purple-glow-text {
    background: linear-gradient(135deg, #fff 10%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #888;
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 0.5;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-weight: 900;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.hero-right {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.grid-item {
    aspect-ratio: 3/4;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #111;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 500px;
}

.hero-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f0f;
    color: #ccc;
    text-decoration: none;
    padding: 1.2rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.hero-nav-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.hero-nav-btn.full-width {
    grid-column: span 1;
}

.hero-nav-btn.primary {
    background: var(--accent-color);
    color: #000;
    font-weight: 700;
    border-color: var(--accent-color);
    font-size: 1.45rem;
    grid-column: 1 / -1;
}

.hero-nav-btn.primary:hover {
    background: var(--accent-hover);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}


.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.desktop-only {
    display: flex;
}

.mobile-only-user-meta {
    display: none;
}



.template-grid,
.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 2rem;
    padding: 0 0 4rem;
}

@media (max-width: 1200px) {

    .template-grid,
    .topics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {

    .template-grid,
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



.card,
.topic-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
}

.topic-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.topic-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.topic-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 0, 0, 0.3));
    color: var(--text-secondary);
}

.topic-count-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #fff;
    z-index: 2;
}

.topic-info {
    padding: 1.5rem;
}

.topic-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.topic-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


.card:hover {
    transform: none;
}

.card-img,
.topic-image {
    aspect-ratio: auto;
    overflow: hidden;
    background: #000;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 1rem 0;
    text-align: left;
}

.card-topic {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.4rem;
    display: block;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: #fff;
}

.card-emoji {
    display: none;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.02);
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
}

.section-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Tariffs Section Premium Styles */
@media (min-width: 1025px) {
    .tariffs-container {
        grid-template-columns: repeat(6, 1fr);
    }

    .tariff-card:nth-child(1),
    .tariff-card:nth-child(2) {
        grid-column: span 3;
        max-width: 400px;
        justify-self: center;
    }

    .tariff-card:nth-child(n+3) {
        grid-column: span 2;
    }
}

.tariffs-container {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tariff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.03), transparent 70%);
    pointer-events: none;
}

.tariff-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 204, 0, 0.05);
}

.tariff-card.popular {
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.03);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--accent-color);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 0.4rem 3rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Unbounded', sans-serif;
}

.tariff-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    display: block;
}

.tariff-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05em;
}

.tariff-price span {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-left: 0.2rem;
    opacity: 0.5;
}

.tariff-attempts {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.tariff-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tariff-btn:hover {
    background: var(--accent-color);
    transform: scale(1.02);
}

.tariff-card.popular .tariff-btn {
    background: var(--accent-color);
}

.tariff-card.popular .tariff-btn:hover {
    background: #fff;
}

.topic-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 204, 0, 0.1);
}

.topic-card:hover .topic-image img {
    transform: scale(1.05);
}

.topic-card:hover h3 {
    color: var(--accent-color);
}

.user-avatar-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.header-avatar:hover {
    transform: scale(1.05);
    border-color: #fff;
}

.header-avatar-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.header-avatar-placeholder:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Tariffs Section Premium Styles */
@media (min-width: 1025px) {
    .tariffs-container {
        grid-template-columns: repeat(6, 1fr);
    }

    .tariff-card:nth-child(1),
    .tariff-card:nth-child(2) {
        grid-column: span 3;
        max-width: 400px;
        justify-self: center;
    }

    .tariff-card:nth-child(n+3) {
        grid-column: span 2;
    }
}

.tariffs-container {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tariff-card {
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(5, 5, 5, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.tariff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.03), transparent 70%);
    pointer-events: none;
}

.tariff-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 204, 0, 0.05);
}

.tariff-card.popular {
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.03);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--accent-color);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 0.4rem 3rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Unbounded', sans-serif;
}

.tariff-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    display: block;
}

.tariff-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05em;
}

.tariff-price span {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-left: 0.2rem;
    opacity: 0.5;
}

.tariff-attempts {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.tariff-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tariff-btn:hover {
    background: var(--accent-color);
    transform: scale(1.02);
}

.tariff-card.popular .tariff-btn {
    background: var(--accent-color);
}

.tariff-card.popular .tariff-btn:hover {
    background: #fff;
}

/* Mobile Adaptation */
@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .header-container {
        padding: 0 16px;
    }

    .mobile-only-user-meta {
        display: block;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4rem 2rem;
        gap: 2.5rem;
        z-index: 999;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-links.active a {
        animation: menuFadeIn 0.5s ease forwards;
        opacity: 0;
    }

    .nav-links.active a:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-links.active a:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-links.active a:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-links.active a:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav-links.active .mobile-only-user-meta {
        animation: menuFadeIn 0.5s ease forwards;
        animation-delay: 0.4s;
        opacity: 0;
    }

    @keyframes menuFadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a {
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        transition: all 0.3s ease;
        font-family: 'Unbounded', sans-serif;
    }

    .nav-links a:hover {
        color: var(--accent-color);
        transform: scale(1.05);
    }

    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--accent-color);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--accent-color);
    }

    .studio-hero {
        height: auto;
        padding: 3rem 0 2rem;
        min-height: auto;
    }

    .hero-main-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hero-marketing-title {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.6;
    }

    .hero-buttons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 1rem;
    }

    .hero-nav-btn.primary {
        grid-column: span 2;
        padding: 1.2rem;
        font-size: 1.28rem;
    }

    .hero-nav-btn.full-width {
        grid-column: span 1;
    }

    .hero-nav-btn {
        padding: 1rem 0.5rem;
        font-size: 0.95rem;
    }

    .tariffs-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        max-width: 100% !important;
        margin-top: 2rem;
    }

    .tariff-card {
        grid-column: span 1 !important;
        max-width: 100% !important;
        padding: 1.5rem 0.8rem !important;
        justify-self: stretch !important;
    }

    .tariff-price {
        font-size: 1.8rem !important;
    }

    .tariff-name {
        font-size: 0.6rem !important;
        letter-spacing: 0.1em !important;
        margin-bottom: 0.8rem !important;
        white-space: normal;
    }

    .tariff-attempts {
        font-size: 0.65rem !important;
        margin-bottom: 1.5rem !important;
    }

    .tariff-btn {
        padding: 0.7rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 600px) {

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

    .topic-info {
        padding: 12px;
    }

    .topic-info h3 {
        font-size: 0.9rem;
    }

    .topic-info p {
        font-size: 0.75rem;
    }

    .topic-card {
        margin-bottom: 12px;
    }
}

/* Login Button Styles */
.login-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.tg-bot-btn {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    border: 1px solid rgba(0, 136, 204, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.tg-bot-btn:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: #0088cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
}

.tg-bot-btn i {
    font-size: 1.1rem;
}

/* Modal Specific Overrides for Login */
#login-modal .modal-container {
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.tg-widget-wrapper iframe {
    border-radius: 12px !important;
    overflow: hidden !important;
}

@media (max-width: 1024px) {
    .login-btn.desktop-only {
        display: none !important;
    }

    .mobile-only-user-meta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 1.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        max-width: 280px;
    }

    .mobile-only-user-meta .login-btn,
    .mobile-only-user-meta .tg-bot-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .mobile-only-user-meta .login-btn {
        background: var(--accent-color);
        color: #000;
        border: none;
    }

    .mobile-only-user-meta .tg-bot-btn {
        background: rgba(0, 136, 204, 0.15);
        border: 1px solid rgba(0, 136, 204, 0.4);
        color: #0088cc;
    }
}