:root {
    --main-color: #1d9bf0;
    --dark-bg: #121212;
    --card-bg: #142a45;
    --text-color: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Code', monospace;
}
body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}
#geometricBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.tv-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.tv-frame {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 70vh;
    background-color: #000;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(29, 155, 240, 0.4);
    overflow: hidden;
    border: 3px solid #333;
}
.tv-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(29, 155, 240, 0.2), rgba(13, 90, 148, 0.5));
}
.tv-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(29, 155, 240, 0.7);
}
.tv-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
}
.btn-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.btn {
    margin-top: 15px;
    padding: 15px 30px;
    background-color: #1d9bf0;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}
.btn:hover {
    background-color: #1d9bf0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 155, 240, 0.4);
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}
.btn:hover::before {
    left: 100%;
}
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #1d9bf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d9bf0;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}
.scroll-down:hover {
    background-color: #1d9bf0;
    color: white;
    box-shadow: 0 0 15px rgba(29, 155, 240, 0.5);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}
.screenshots {
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.3);
}
.screenshots-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.screenshot-frame {
    width: 280px;
    height: 200px;
    background-color: var(--card-bg);
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}
.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}
.screenshot-frame:nth-child(odd) {
    transform: rotate(-2deg);
}
.screenshot-frame:nth-child(even) {
    transform: rotate(2deg);
}
.screenshot-frame:hover {
    transform: rotate(0) scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 25px rgba(29, 155, 240, 0.4);
}
.screenshot-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(29, 155, 240, 0.2), rgba(0, 0, 0, 0));
}
.support {
    padding: 40px 0;
    text-align: center;
}
.support-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.support-card h3 {
    margin-bottom: 20px;
    color: #1d9bf0;
}
.support-card .btn {
    margin-top: 20px;
}
footer {
    background-color: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    margin-top: 20px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-logo {
    font-size: 1.8rem;
    color: #1d9bf0;
    font-weight: bold;
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #1d9bf0;
}