/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Floating icons */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.floating-icon i {
    font-size: 30px;
}

.floating-icon.whatsapp {
    background-color: #25D366;
}

.floating-icon.telegram {
    background-color: #0088cc;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
    
    /* Switch between desktop and mobile download layouts */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-circle-container {
        width: 130px;
        height: 130px;
    }
    
    .android-icon,
    .ios-icon {
        font-size: 35px;
    }
    
    .mobile-rectangle {
        padding: 15px;
    }
    
    .mobile-rectangle img {
        width: 140px;
        margin-bottom: 15px;
    }
    
    /* Tutorial responsive styles */
    .tutorial-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .welcome-message p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .login-credentials {
        flex-direction: column;
        padding: 15px;
    }
    
    .lock-icon-container {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .lock-icon {
        width: 60px;
        height: 60px;
    }
    
    .credential-item {
        padding: 8px 15px;
    }
    
    .step-heading {
        font-size: 20px;
        padding: 12px 15px;
    }
    
    /* Like button styles removed */
    
    .step-content {
        padding: 0;
    }
    
    .tutorial-step {
        padding: 15px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p,
    .step-content li {
        font-size: 15px;
    }
    
    .tutorial-container {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .tutorial-step h2 {
        font-size: 20px;
    }
    
    .tutorial-step-content {
        flex-direction: column;
    }
    
    .tutorial-image {
        order: -1;
        margin-bottom: 15px;
    }
    
    .tutorial-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .tutorial-button {
        width: 100%;
    }
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #fff;
}

.left-section {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 15px;
}

.header-logo-right img {
    height: 35px;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 18px;
}

.header-divider {
    height: 5px;
    background: linear-gradient(to right, #ff69b4, #ff1493);
    width: 100%;
}

/* Hero section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('assets/Casino.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 50px;
    overflow: hidden;
    background-color: #000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding-left: 20px;
    color: #fff;
}

.hero-content p:first-of-type {
  font-weight: bold;        /* Makes text bold */
  font-size: 3rem;          /* Increases text size (adjust as needed) */
  line-height: 1.2;         /* Keeps the lines close but readable */
  text-transform: uppercase;/* Optional: make it all caps */
}

.hero-image {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40%;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-height: 350px;
}

.vertical-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 70%;
    background-color: #fff;
    z-index: 2;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #ff4c4c;
    color: #fff;
    padding: 7px 40px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2.5s infinite;
    box-shadow: 0 4px 15px rgba(255, 76, 76, 0.2);
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 76, 76, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 76, 76, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 76, 76, 0);
    }
}

.cta-button:hover {
    background-color: #e43b3b;
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(255, 76, 76, 0.4);
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 10px rgba(255, 76, 76, 0.3);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.cta-button:hover::after {
    left: 100%;
}

/* Action Section */
.action-section {
    background-color: #f5f5f5;
    padding: 20px 0;
    text-align: center;
}

.top-line, .bottom-line {
    height: 10px;
    background-color: #ff4c4c;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    width: 400px;
    max-width: 90%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.whatsapp-button:active {
    transform: translateY(1px);
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.register-button {
    display: inline-block;
    background: linear-gradient(to right, #ff4c4c, #ff9966);
    color: white;
    padding: 7px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    width: 400px;
    max-width: 90%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: glow 3s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 76, 76, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 76, 76, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 76, 76, 0);
    }
}

.register-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 76, 76, 0.4);
}

.register-button:active {
    transform: translateY(1px);
}

.register-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.register-button:hover::after {
    left: 100%;
}

/* Login Section */
.login-section {
    background-color: #f5f5f5;
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

/* Content Section */
.content-section {
    background-color: #f5f5f5;
    padding: 40px 0;
    color: #000;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-section h1 {
    color: #000;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: none;
}

.intro-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.toc-heading {
    color: #0066cc;
    font-size: 24px;
    margin: 30px 0 15px;
}

.toc-list {
    padding-left: 20px;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
}

.toc-list a:hover {
    text-decoration: underline;
}

.content-section-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 40px 0;
}

h2 {
    color: #000;
    font-size: 28px;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

h3.sub-heading {
    color: #0066cc;
    font-size: 22px;
    margin: 25px 0 15px;
}

.content-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    color: #333;
}

.text-link {
    color: #0066cc;
    text-decoration: underline;
}

.feature-list {
    margin: 15px 0 25px 20px;
}

.feature-list li {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
    font-size: 14px;
}

.numbered-list {
    margin: 15px 0 25px 20px;
}

.numbered-list li {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
}

.faq-answer {
    color: #555;
    line-height: 1.5;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.content-cta-button {
    display: inline-block;
    background-color: #ff4c4c;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(255, 76, 76, 0.2);
}

.content-cta-button:hover {
    background-color: #e43b3b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 76, 76, 0.3);
}

.content-cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(255, 76, 76, 0.2);
}

.content-cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.content-cta-button:hover::after {
    left: 100%;
}

.content-cta-button.secondary {
    background-color: #0066cc;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.2);
}

.content-cta-button.secondary:hover {
    background-color: #0055aa;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Logo Feature Section */
.logo-feature-section {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.logo-feature-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.logo-feature-container h2 {
    color: #000;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
}

.logo-feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 20px auto;
    max-width: 80%;
    text-align: center;
}

.logo-feature-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    position: relative;
}

.logo-feature-accent-line {
    width: 10px;
    height: 80px;
    background: linear-gradient(to bottom, #ff4c4c, #ff9966);
    margin-right: 20px;
    border-radius: 0;
    position: relative;
}

.logo-feature-image {
    border: 2px solid red;
    border-radius: 20px;
    padding: 10px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    position: relative;
}


.logo-feature-image img {
    max-width: 100%;
    height: auto;
}

.logo-feature-list {
    list-style-type: disc;
    text-align: left;
    max-width: 80%;
    margin: 20px auto;
}

.logo-feature-list li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.5;
}

.login-container {
    background-color: #f0e6d9;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    align-items: center;
    width: 600px;
    max-width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lock-icon {
    margin-right: 30px;
}

.lock-icon img {
    width: 80px;
}

.credentials {
    flex-grow: 1;
}

.credential-item {
    background-color: white;
    border-radius: 30px;
    padding: 10px 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credential-label {
    color: #000;
    font-weight: bold;
}

.credential-value {
    color: #000;
    font-weight: normal;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.facebook {
    background-color: #1877F2;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.twitter {
    background-color: #000;
}

.linkedin {
    background-color: #0077B5;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ccc;
}

.footer-divider {
    height: 1px;
    background-color: #555;
    margin: 20px auto;
    width: 50%;
}

.copyright {
    color: #aaa;
    font-size: 14px;
}

/* Download Section */
.download-section {
    background-color: #f5f5f5;
    padding: 70px 50px;
}

/* Desktop/Mobile visibility */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.download-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.download-card {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 25px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card.android {
    border: 3px solid #78c257;
}

.download-card.ios {
    border: 3px solid #38b6ff;
}

.download-card.beta {
    border: 3px solid #ff5252;
}

.download-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-icon img {
    max-width: 100%;
    max-height: 100%;
}

.download-card h3 {
    color: #000;
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.version {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.download-button {
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: auto;
    font-size: 16px;
}

.android-button {
    background-color: #1e3a5f;
}

.ios-button {
    background-color: #1e3a5f;
}

.beta-button {
    background-color: #ff5252;
    color: #fff;
}

/* Info Section */
.info-section {
    background-color: #fff;
    padding: 50px 0 70px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-title {
    color: #000;
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.info-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.toc-heading {
    color: #0066cc;
    font-size: 24px;
    margin: 30px 0 15px;
}

.toc-list {
    padding-left: 20px;
}

.toc-list li {
    margin-bottom: 10px;
    color: #333;
}

.toc-list a {
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
}

.toc-list a:hover {
    text-decoration: underline;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-item {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

.mobile-nav-item.whatsapp {
    background-color: #4CAF50;
}

.mobile-nav-item.menu {
    background-color: #fff;
    color: #333;
}

.mobile-nav-item.telegram {
    background-color: #2196F3;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.close-menu {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-item {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0;
    text-align: center;
}

.mobile-menu-divider {
    height: 1px;
    background-color: #ddd;
    margin: 10px 0;
}

/* Section Lift Effect for Mobile */
.mobile-section-lift {
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
}

.section-lifted {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .download-section {
        padding: 20px 10px;
    }


    /* Apply lift effect to all major sections */
    section {
        margin-bottom: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        will-change: transform, opacity;
    }
    
    .action-section,
    .login-section,
    .content-section,
    .logo-feature-section,
    .download-section,
    .info-section,
    .tutorial-section,
    .troubleshooting-section {
        margin: 0 15px 30px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        background-color: #fff;
        padding: 20px 15px;
    }
    
    /* Adjust specific sections */
    .hero {
        border-radius: 0;
        box-shadow: none;
        margin: 0;
    }
    
    .action-section {
        padding: 15px;
    }
    
    .login-section {
        padding: 15px;
    }
    
    body {
        background-color: #f9f9f9;
        padding-bottom: 80px;
    }
    .floating-icons {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
    }
    header {
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .left-section {
        flex-direction: row;
        align-items: center;
    }
    
    .logo img {
        margin-right: 0;
    }
    
    nav {
        display: none;
    }
    
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 50px 20px;
        background-size: cover;
        height: auto;
        min-height: 500px;
    }
    
    .hero-content {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        width: 100%;
        margin-top: 0;
        margin-bottom: 50px;
        justify-content: center;
        z-index: 3;
        transform: none;
    }
    
    .hero-image img {
        max-height: 200px;
    }
    
    .vertical-line {
        display: none;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .cta-button {
        padding: 12px 35px;
        font-size: 22px;
        animation: ctaPulseMobile 2s infinite;
    }
    
    @keyframes ctaPulseMobile {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 76, 76, 0.7);
        }
        70% {
            transform: scale(1.03);
            box-shadow: 0 0 0 10px rgba(255, 76, 76, 0);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 76, 76, 0);
        }
    }
    
    .login-container {
        flex-direction: row;
        text-align: left;
        background-color: #f8f0e3;
        border-radius: 30px;
        padding: 25px 15px;
        align-items: center;
        max-width: 95%;
    }
    
    .lock-icon {
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .lock-icon img {
        width: 70px;
    }
    
    .credential-item {
        flex-direction: row;
        background-color: white;
        border-radius: 30px;
        padding: 10px 15px;
        margin-bottom: 10px;
        justify-content: space-between;
    }
    
    .credential-label {
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .content-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .content-section h1 {
        font-size: 24px;
    }
    
    .intro-text {
        font-size: 14px;
    }
    
    .toc-heading {
        font-size: 20px;
    }
    
    .toc-list a {
        font-size: 14px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    h3.sub-heading {
        font-size: 18px;
    }
    
    .content-text {
        font-size: 14px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .content-cta-button {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .logo-feature-container {
        padding: 20px;
    }
    
    .logo-feature-text {
        max-width: 95%;
        font-size: 14px;
    }
    
    .logo-feature-content {
        flex-direction: row;
        justify-content: center;
    }
    
    .logo-feature-accent-line {
        height: 80px;
        width: 10px;
        margin-right: 15px;
        margin-bottom: 0;
        border-radius: 0;
    }
    
    .logo-feature-image {
        width: 200px;
        margin-left: 0;
    }
    
    .logo-feature-list {
        max-width: 90%;
        padding-left: 20px;
    }
    
    .download-options {
        justify-content: center;
    }
    
    .download-card {
        width: 90%;
        max-width: 300px;
        margin-bottom: 30px;
    }
    
    .download-icon {
        width: 120px;
        height: 120px;
    }
    
    .info-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .info-text {
        font-size: 14px;
    }
    
    .toc-heading {
        font-size: 20px;
    }
    
    .toc-list a {
        font-size: 14px;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-link {
        margin: 10px 0;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
    
    .table-container {
        margin-bottom: 20px;
        border-radius: 5px;
        box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    }
    
    .issues-table {
        min-width: 600px; /* Ensures table doesn't get too narrow */
    }
    
    .issues-table th, 
    .issues-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .issues-table th {
        white-space: nowrap;
    }
}

/* Tutorial Section */
.tutorial-section {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.tutorial-container {
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tutorial-title {
    color: #000;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.tutorial-content {
    margin-top: 40px;
}

.welcome-message {
    margin-bottom: 40px;
}

.welcome-message p {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

/* Login Credentials Box */
.login-credentials {
    background-color: #f8e8d4;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lock-icon-container {
    margin-right: 20px;
}

.lock-icon {
    width: 80px;
    height: 80px;
}

.credentials-info {
    flex: 1;
}

.credential-item {
    background-color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credential-item:last-child {
    margin-bottom: 0;
}

.credential-label {
    font-weight: bold;
    color: #333;
}

.credential-value {
    color: #333;
    font-weight: 500;
}

.tutorial-step {
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding: 25px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.tutorial-step:last-child {
    border-bottom: none;
}

.step-heading {
    position: relative;
    background-color: #f8e8d4;
    color: #000;
    font-size: 24px;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.step-number {
    margin-right: 10px;
    font-weight: bold;
}

/* Like button removed */

.step-content {
    padding: 0;
}

.step-content h3 {
    color: #333;
    font-size: 20px;
    margin: 20px 0 10px;
}

.step-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-content ol,
.step-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.step-content li {
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* YouTube Video Container */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-top: 30px;
    margin-bottom: 20px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Optional: Adjust max-width as needed */
    margin-top: 30px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: shadow effect */
}

.image-container img {
    width: 100%;
    height: auto; /* Ensures aspect ratio is maintained */
    object-fit: contain; /* Ensures the entire image fits inside the container */
    border-radius: 8px; /* Optional: rounded corners */
}


.tutorial-step-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tutorial-text {
    flex: 2;
    min-width: 300px;
}

.tutorial-text p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tutorial-text ol, 
.tutorial-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.tutorial-text li {
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.tutorial-image {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.tutorial-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tutorial-link {
    color: #0066cc;
    text-decoration: underline;
}

.tutorial-cta {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.tutorial-cta h3 {
    color: #000;
    font-size: 24px;
    margin-bottom: 15px;
}

.tutorial-cta p {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
}

.tutorial-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tutorial-button {
    display: inline-block;
    background-color: #ff4c4c;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.tutorial-button:hover {
    background-color: #e43b3b;
}

.tutorial-button.secondary {
    background-color: #0066cc;
}

.tutorial-button.secondary:hover {
    background-color: #0055aa;
}

/* Troubleshooting Section */
.troubleshooting-section {
    margin-top: 50px;
}

.troubleshooting-section h2 {
    color: #000;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
}

.troubleshooting-section p {
    margin-bottom: 20px;
    color: #333;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    width: 100%;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    position: relative;
}

.scroll-indicator {
    display: none;
    text-align: center;
    padding: 8px;
    background-color: rgba(0,0,0,0.05);
    color: #666;
    font-size: 14px;
    border-radius: 4px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: block;
    }
}

.issues-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    table-layout: fixed;
}

.issues-table th, 
.issues-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.issues-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

.issues-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.issues-table tr:hover {
    background-color: #f1f1f1;
}

.highlight {
    font-weight: bold;
    color: #0066cc;
}

/* Default styles (For PC) */
.mobile-image {
    display: none; /* Hide Register 1 image by default */
}

.pc-image {
    display: block; /* Show Register image by default */
}

/* Mobile Styles (Screen width 768px or less) */
@media (max-width: 768px) {
    .pc-image {
        display: none; /* Hide Register image on mobile */
    }

    .mobile-image {
        display: block; /* Show Register 1 image on mobile */
    }
}

a {
    text-decoration: none;
}
