* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar Styles */
html::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track {
    background: #0d0d0d;
}

html::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 6px;
    border: 2px solid #0d0d0d;
}

html::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #333 #0d0d0d;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    background-color: black;
    min-height: 100dvh;
}

/* Ad Block Container */
.dashboard-ad-box-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 40px;
    width: 100%;
    max-width: 1000px;
    height: 250px;
}
.ad-box-content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 225px;
    align-items: center;
    justify-content: center;
    background: #333;
    border-radius: 10px;
}

.ad-box-scroll-container {
    display: flex;
    height: 25px;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
}
.ad-box-selection-bubble-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}
.ad-box-scroll-selection {
    text-align: center;
    color: #999;
    width: 20px;
    height: 20px;
    border-radius: 50%;

    font-weight: 900;
    cursor: pointer;
    transition: all ease 0.2s;
}
.ad-box-scroll-selection:hover {
    background: #333;
}
.ad-box-selection-bubble {
    cursor: pointer;
}
.ad-box-selection-bubble.active {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #49a14a;
    box-shadow: 0 4px 12px rgba(73, 161, 74, .7);
}
.ad-box-selection-bubble.inactive {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #333;
    opacity: 0.5;
}
.ad-box-selection-bubble.inactive:hover {
    background: #666;
    opacity: 0.5;
}
/* Ad Content Styles */
.ad-box-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.ad-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px;
    text-align: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.ad-content h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
    color: #f1f1f1;
    font-family: 'Montserrat', sans-serif;
}

.ad-content p {
    margin: 0;
    font-size: 18px;
    color: #808080;
    max-width: 600px;
}

.ad-cta-btn {
    background: #49a14a;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ad-cta-btn:hover {
    background: #5cb85c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(73, 161, 74, 0.4);
}

/* Individual Ad Styling */
.ad-1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    transition: all 0.2s ease;
}
.ad-3:hover,
.ad-2:hover,
.ad-1:hover {
    background: linear-gradient(135deg, #1a1a1a 100%, #1a1a1a 100%);
}

.ad-2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    transition: all 0.2s ease;
}

.ad-3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    transition: all 0.3s ease;
}

/* Arrow hover states */
.ad-box-scroll-selection {
    transition: all 0.3s ease;
}

.ad-box-scroll-selection:hover {
    background: #333;
    color: white;
}

/* Dashboard Body Styles */
.dashboard-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 300px;
    left: 0px;
    align-items: center;
}
.dashboard-section-container {
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
    width: 100%;
    max-width: 1000px;
    align-items: center;
    padding-bottom: 20px;
}
.dashboard-section-title-wrap {
    display: flex;
    height: 35px;
    background: #1a1a1a;
    align-items: center;
    padding: 20px;
    width: 100%;
}
.dashboard-section-title {
    color: white;
    font-size: 15px;
    font-weight: 700;
}
.icon-container {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #49a14a;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.icon-container.help-disk {
    background: #3498db;
}
.selection-icon {
    width: 30px;
    height: 30px;
}


.mode-selection-container {
    display: flex;
    width: 300px;
    color: #f2f2f2;
    padding: 20px;
    border-radius: 7px;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    transition: all 0.2s ease;
}
.mode-selection-container:hover {
    background: #1a1a1a;
}
.mode-selection-container.mode-unavailable {
    opacity: 0.33;
    cursor: not-allowed;
}

.mode-selection-group {
    display: flex;
    gap: 20px;
    padding: 10px;
}
.title-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.label {
    font-size: 15px;
    font-weight: 500;
    color: white;
}
.description {
    font-size: 11px;
    color: #999;
}

.dashboard-user-stats-container {
    display: flex;
    width: 100%;
    padding: 10px;
}

.dashboard-user-stats-wrapper {
    display: flex;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.2s ease;
    opacity: 0.5;
}

.dashboard-user-stats-wrapper:hover {
    background: #1a1a1a;
    cursor: not-allowed;
}


.dashboard-user-stats-basic-stats-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.dashboard-user-stats-data-group {
    flex: 1 1 calc(50% - 5px);
    min-width: 75px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
}
.dashboard-user-stats-data-title {
    color: #999;
    font-size: 14px;
}
.dashboard-user-stats-data-value {
    color: #f2f2f2;
    font-size: 15px;
    font-weight: 700;
}

.dashboard-blog-articles-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 10px;
}

.dashboard-blog-article-card {
    display: flex;
    width: 100%;
    text-decoration: none;
    color: #999;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
}
.dashboard-blog-article-card:hover {
    background: linear-gradient(135deg, #1a1a1a, #1a1a1a);
}

.dashboard-blog-article-image-wrapper {
    display: flex;
    width: 320px;
    height: 180px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    overflow: hidden;
}
.dashboard-blog-article-image {
    border-radius: 10px;
    width: 320px;
    height: 180px;
    border: 4px solid black;
}

.dashboard-blog-article-content {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    text-decoration: inherit;
    align-items: baseline;
    gap: 10px;
}

.dashboard-blog-article-title {
    font-size: 20px;
    color: #f2f2f2;
}
.dashboard-blog-article-title:hover {
    text-decoration: underline;
}
.dashboard-blog-article-meta {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 700px) {
    .dashboard-blog-article-card {
        flex-direction: column;
    }

    .ad-content h2 {
        font-size: 25px;
    }

    .ad-content p {
        font-size: 15px;
    }
}

@media (max-width: 1000px) {
    .mode-selection-group {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
}

