/* Turtle MU - DmN CMS Specific Styles */
@charset "utf-8";

/* Exception Messages */
#exception {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 600px;
    width: 90%;
}

#exception .alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid #444;
    color: #fff;
}

#exception .alert-success {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.2);
}

#exception .alert-error,
#exception .alert-danger {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.2);
}

#exception .alert-info {
    border-color: #2196f3;
    background: rgba(33, 150, 243, 0.2);
}

/* Loading Overlay */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000;
    flex-direction: column !important;
    gap: 2rem;
    color: #fff;
}

#loading[style*="display: flex"],
#loading[style*="display:flex"],
#loading[style*="display: block"],
#loading[style*="display:block"] {
    display: flex !important;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #00ff00;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.5),
        0 0 40px rgba(0, 255, 0, 0.3),
        inset 0 0 20px rgba(0, 255, 0, 0.2);
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #00ff00;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #00cc00;
    width: 70px;
    height: 70px;
    top: 5px;
    left: 5px;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #00ff88;
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
}

.spinner-ring:nth-child(4) {
    border-top-color: #88ff00;
    width: 50px;
    height: 50px;
    top: 15px;
    left: 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 1.25rem;
    color: #00ff00;
    text-shadow: 
        0 0 10px rgba(0, 255, 0, 0.8),
        0 0 20px rgba(0, 255, 0, 0.6),
        0 0 30px rgba(0, 255, 0, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
    letter-spacing: 0.1em;
    font-weight: 500;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 10px rgba(0, 255, 0, 0.8),
            0 0 20px rgba(0, 255, 0, 0.6),
            0 0 30px rgba(0, 255, 0, 0.4);
    }
    50% {
        opacity: 0.7;
        text-shadow: 
            0 0 15px rgba(0, 255, 0, 1),
            0 0 25px rgba(0, 255, 0, 0.8),
            0 0 35px rgba(0, 255, 0, 0.6);
    }
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 9998;
}

/* Modal Styles - Turtle.mu Style */
.modal-content {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 50;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0.5rem;
    flex-direction: column;
    width: 100%;
    max-width: 32rem;
    padding: 2rem;
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[id^="select_"],
[id^="modal_"] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    z-index: 9999;
    display: none;
    max-width: 32rem;
    width: 90%;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: var(--turtle-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-button {
    color: #aaa;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    background: var(--turtle-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: opacity 0.2s;
}

.close-button:hover {
    opacity: 0.8;
}

.modal-header .close {
    cursor: pointer;
    font-size: 1.5rem;
    color: #aaa;
    text-decoration: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    font-weight: 700;
}

.modal-header .close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Form Styles - Turtle.mu Style */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
}

.form-control,
.form-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0.75rem;
    background-color: #222;
    border: 1px solid #6a7282;
    border-radius: 0;
    color: #fff;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s;
}

.form-control:focus,
.form-input:focus {
    outline: none;
    outline-offset: 2px;
    border-color: #d1d5dc;
    box-shadow: 0 0 0 2px rgba(209, 213, 220, 0.2);
}

.form-control::placeholder,
.form-input::placeholder {
    color: #6a7282;
    opacity: 1;
}

/* Password Requirements Help Text */
.form-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
}

.form-text.text-muted {
    color: #6a7282;
}

.password-requirements {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 0.375rem;
    line-height: 1.4;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: rgba(209, 213, 220, 0.2);
    color: #fff;
    border: 1px solid #444;
}

.btn-primary:hover {
    background: rgba(209, 213, 220, 0.3);
    border-color: #d1d5dc;
    color: #fff;
}

/* Override Bootstrap blue colors for buttons */
.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
    background-color: rgba(209, 213, 220, 0.2) !important;
    border-color: #444 !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: rgba(209, 213, 220, 0.3) !important;
    border-color: #d1d5dc !important;
    color: #fff !important;
}

.btn-success {
    background: #4caf50;
    color: #fff;
}

.btn-danger {
    background: #f44336;
    color: #fff;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

table th,
table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

table th {
    background: rgba(17, 17, 17, 0.8);
    font-weight: 600;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
}

table td {
    color: #d1d5dc;
}

table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    border: 1px solid;
}

.alert-info {
    background: rgba(33, 150, 243, 0.2);
    border-color: #2196f3;
    color: #90caf9;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
    color: #a5d6a7;
}

.alert-warning {
    background: rgba(255, 152, 0, 0.2);
    border-color: #ff9800;
    color: #ffcc80;
}

.alert-danger {
    background: rgba(244, 67, 54, 0.2);
    border-color: #f44336;
    color: #ef9a9a;
}

/* Content Area */
#content,
#container,
.main-content,
.dmn-content {
    position: relative;
    z-index: 10;
    padding: 2rem 1rem;
    padding-top: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;
}

/* News page - wider content for Facebook timeline */
.dmn-content-news {
    max-width: 1400px;
}

.dmn-content-news .dmn-page-box {
    padding: 2rem;
    overflow-x: visible;
}

.dmn-content-news .dmn-page-content {
    padding: 0;
    overflow-x: visible;
    width: 100%;
}

/* Content Boxes - Turtle.mu Style */
.dmn-page-box {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.dmn-page-title {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-right: 0;
}

.dmn-page-title h1 {
    margin: 0;
    display: block;
    width: 100%;
    padding-right: 250px; /* Reserve space for server selector on the right */
    position: relative;
    z-index: 11; /* Above server selector */
    box-sizing: border-box;
}

/* Rankings Server Selector */
.rankings-server-select {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5; /* Below title */
    min-width: 200px;
    max-width: 240px;
}

.rankings-server-select .nav-pills {
    margin: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.rankings-server-select .nav-pills,
.rankings-server-select .nav-pills * {
    background: transparent !important;
    background-color: transparent !important;
}

.rankings-server-select .nav-pills .nav-link {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    margin: 0 0.1rem;
    white-space: nowrap;
    background: transparent !important;
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.rankings-server-select .nav-pills .nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.rankings-server-select .nav-pills .nav-link.active,
.rankings-server-select .nav-pills .nav-link.active:hover,
.rankings-server-select .nav-pills .nav-link.active:focus,
.rankings-server-select .nav-pills .nav-link.active:active {
    background: rgba(255, 255, 255, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.dmn-page-content {
    position: relative;
}

/* Rankings */
.ranking-list {
    list-style: none;
    padding: 0;
}

.ranking-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid #333;
    border-radius: 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ranking-list li:hover {
    background: rgba(17, 17, 17, 0.8);
    border-color: #444;
}

/* Account Panel */
#acc-panel-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
}

#acc-panel-tabs a {
    padding: 1rem;
    color: #9ca3af;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

#acc-panel-tabs a:hover,
#acc-panel-tabs a.active {
    color: #fff;
    border-bottom-color: #d1d5dc;
}

/* Bootstrap Tabs Styling for Turtle MU */
.nav-tabs {
    border-bottom: 1px solid #333;
    margin-bottom: 1rem;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs .nav-link {
    color: #9ca3af;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(17, 17, 17, 0.6);
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link:hover {
    color: #fff;
    border-color: #444 #444 transparent;
    background: rgba(17, 17, 17, 0.8);
    border-bottom-color: #555;
}

.nav-tabs .nav-link.active {
    color: #fff;
    background: #444;
    border-color: #555 #555 transparent;
    border-bottom: 3px solid #666;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* Nav Pills Styling (for rankings server selection) */
.nav-pills .nav-link {
    color: #9ca3af;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: all 0.2s;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
}

.nav-pills .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-pills .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Override Bootstrap blue colors for nav-pills */
.nav-pills .nav-link,
.nav-pills .nav-link:focus,
.nav-pills .nav-link:active,
.nav-pills .nav-link:visited {
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #9ca3af !important;
}

.nav-pills .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:active {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
}

.tab-content {
    padding: 1rem 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* System Requirements Styling */
.system-requirements {
    margin-top: 1.5rem;
}

.system-requirements .requirements-card {
    background: rgba(17, 17, 17, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0.5rem;
    overflow: hidden;
}

.system-requirements .requirements-list {
    border: none;
}

.system-requirements .list-group-item {
    background: rgba(17, 17, 17, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #d1d5dc !important;
    padding: 1rem 1.5rem;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    font-size: 1rem;
}

.system-requirements .requirements-header {
    background: rgba(209, 213, 220, 0.1) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.2) !important;
    font-weight: 700 !important;
    font-size: 1.1rem;
    color: #fff !important;
}

.system-requirements .requirements-header span {
    color: #fff;
    font-weight: 700;
}

.system-requirements .requirements-item {
    color: #d1d5dc !important;
}

.system-requirements .requirements-item span {
    color: #d1d5dc;
}

.system-requirements .requirements-item:last-child {
    border-bottom: none !important;
}

/* Download Cards Styling */
.card-group .card {
    background: rgba(17, 17, 17, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0.5rem;
}

.card-group .card .dmn-download-button {
    background: rgba(209, 213, 220, 0.2) !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    width: 100%;
    padding: 1rem;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    transition: all 0.3s;
}

.card-group .card .dmn-download-button:hover {
    background: rgba(209, 213, 220, 0.3) !important;
    border-color: #d1d5dc !important;
    color: #fff !important;
}

/* Alert Styling for Downloads */
.alert-primary {
    background: rgba(17, 17, 17, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #d1d5dc !important;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

/* Bootstrap Table Styling for Turtle MU */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #d1d5dc;
    background: rgba(17, 17, 17, 0.6);
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #333;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #444;
    background: rgba(17, 17, 17, 0.8);
    color: #fff;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
}

.table tbody + tbody {
    border-top: 2px solid #444;
}

.table-bordered {
    border: 1px solid #333;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #333;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.03);
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-condensed th,
.table-condensed td {
    padding: 0.5rem;
}

.dmn-account-table {
    background: rgba(17, 17, 17, 0.8);
    border-radius: 0.5rem;
    overflow: hidden;
}

.dmn-account-table th {
    background: rgba(17, 17, 17, 0.95);
    color: #fff;
    font-weight: 600;
    width: 200px;
}

.dmn-account-table td {
    color: #d1d5dc;
}

.dmn-page-box {
    background: rgba(17, 17, 17, 0.8);
    border-radius: 0.5rem;
    padding: 2rem;
    padding-top: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid #333;
    overflow: visible;
}

.dmn-page-title {
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0;
    overflow: visible;
    min-height: auto;
}

.dmn-page-title h1 {
    font-size: 2.5rem;
    margin: 0;
    margin-bottom: 1.5rem;
    padding: 0;
    padding-top: 0;
    padding-bottom: 0.5rem;
    font-family: 'Times New Roman', Times, serif;
    overflow: visible;
    line-height: 1.3;
    display: block;
}

.dmn-page-content {
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.p-2 {
    padding: 0.5rem !important;
}

.text-center {
    text-align: center !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.float-right {
    float: right !important;
}

.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

/* Responsive */
@media (min-width: 768px) {
    #content,
    #container,
    .main-content {
        padding: 2rem 8.75rem;
    }
}

/* My Account Dropdown Styles */
.dropdown {
	position: relative;
}

.dropdown-toggle.nickname {
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
	display: block;
	height: auto;
	min-height: 28px;
	padding: 0.25rem 20px;
	line-height: 1.5;
	color: #d32c15;
	background: transparent;
	border: none;
	cursor: pointer;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.dropdown-toggle.nickname:hover {
	color: #fc0f0f;
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
	color: #d32c15;
}

.my-contents {
	width: 198px !important;
	position: absolute;
	right: 0;
	top: 23px;
	background: #2d2d2d;
	border: 1px solid #141414;
	border-bottom: none;
	border-radius: 5px;
	box-shadow: 1px 1px 10px 2px #151515;
	display: none;
	padding: 10px 0;
	margin: 0;
	list-style: none;
	z-index: 1000;
}

.dropdown.show .my-contents {
	display: block;
}

.my-contents .dropdown-item {
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    font-size: 1rem;
	display: block;
	width: 100% !important;
	padding: 8px 25px;
	clear: both;
	font-weight: 400;
	color: #fff;
	text-align: left;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	border-top: 1px solid #141414;
	transition: background-color 0.2s;
}

.my-contents .dropdown-item:first-child {
	border-top: none;
}

.my-contents .dropdown-item:hover {
	background-color: #3a3a3a;
	color: #fff;
}

.my-contents .dropdown-item i {
	margin-right: 8px;
	color: #888;
}

.my-contents .dropdown-item:hover i {
	color: #fff;
}

.acp-coins {
	margin-bottom: 10px;
	display: block;
	padding-left: 25px;
	padding-right: 25px;
}

.acp-coins .coins-title {
	color: #fff;
}

.acp-coins .coins {
	color: #d76440;
}

.my-contents .acp-coins {
	padding: 10px 25px;
	margin-bottom: 0;
	border-bottom: 1px solid #141414;
}

.my-contents .acp-coins:last-of-type {
	border-bottom: 1px solid #141414;
}

.list li {
	border-bottom: 1px solid #141414;
}

.list li:last-child {
	border-bottom: none;
}

/* Rules Content Styling */
.rules-content {
	color: #d1d5dc;
	font-family: 'Cormorant', 'Times New Roman', Times, serif;
	line-height: 1.8;
	font-size: 1.05rem;
}

.rules-container {
	padding: 1rem 0;
}

.rules-section-title {
	color: #d1d5dc;
	font-family: 'Cormorant', 'Times New Roman', Times, serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(209, 213, 220, 0.3);
	background: linear-gradient(135deg, rgba(209, 213, 220, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.rules-section-title:first-child {
	margin-top: 0;
}

.rules-list {
	margin: 1rem 0;
	padding-left: 2rem;
	list-style-type: disc;
	color: #9ca3af;
}

.rules-list li {
	margin-bottom: 0.75rem;
	padding-left: 0.5rem;
	line-height: 1.7;
	font-family: 'Cormorant', 'Times New Roman', Times, serif;
	font-size: 1rem;
}

.rules-list li::marker {
	color: #d1d5dc;
}

.rules-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(209, 213, 220, 0.3);
	text-align: center;
}

.rules-footer p {
	margin-bottom: 1rem;
	color: #9ca3af;
	font-family: 'Cormorant', 'Times New Roman', Times, serif;
	font-size: 1rem;
	line-height: 1.6;
}

.rules-footer p strong {
    color: #d1d5dc;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Terms of Service Content Styling */
.tos-content {
    color: #d1d5dc;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    line-height: 1.8;
    font-size: 1.05rem;
}

.tos-container {
    padding: 1rem 0;
}

.tos-section-title {
    color: #d1d5dc;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(209, 213, 220, 0.3);
    background: linear-gradient(135deg, rgba(209, 213, 220, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tos-section-title:first-child {
    margin-top: 0;
}

.tos-list {
    margin: 1rem 0;
    padding-left: 2rem;
    list-style-type: disc;
    color: #9ca3af;
}

.tos-list li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    line-height: 1.7;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    font-size: 1rem;
}

.tos-list li::marker {
    color: #d1d5dc;
}

.tos-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(209, 213, 220, 0.3);
    text-align: center;
}

.tos-footer p {
    margin-bottom: 1rem;
    color: #9ca3af;
    font-family: 'Cormorant', 'Times New Roman', Times, serif;
    font-size: 1rem;
    line-height: 1.6;
}

.tos-footer p strong {
    color: #d1d5dc;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================
   CENTER TITLE & UNDERLINE
============================ */
#news-updates h2,
.news-section h2 {
    text-align: center;
    width: 100%;
}

#news-updates .deco-line,
.news-section .deco-line {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 90px;
    height: 3px;
    background: linear-gradient(to right, transparent, #cfcfcf, transparent);
    border-radius: 4px;
}

/* ==================================================
   SILVER GLOSSY BORDER — matches ANNOUNCEMENT card
================================================== */
.silver-card {
    background: rgba(0, 0, 0, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 8px rgba(255,255,255,0.18),
        inset 0 0 14px rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);
    transition: 0.35s ease;
}

.silver-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.06),
        transparent
    );
    pointer-events: none;
}

.silver-card:hover {
    border-color: rgba(255,255,255,0.55);
    box-shadow:
        0 0 18px rgba(255,255,255,0.45),
        inset 0 0 18px rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

/* ==================================================
   FACEBOOK SILVER GLOSSY BOX (exact match, 600px)
================================================== */
.fb-silver-card {
    width: 600px;
    max-width: 100%;
    margin: 2rem auto;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.40);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 14px;
    box-shadow:
        0 0 8px rgba(255,255,255,0.18),
        inset 0 0 14px rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.fb-silver-card::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:40%;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.06),
        transparent
    );
}

.fb-silver-card:hover {
    border-color: rgba(255,255,255,0.55);
    box-shadow:
        0 0 18px rgba(255,255,255,0.45),
        inset 0 0 18px rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.fb-silver-card .fb-page,
.fb-silver-card .fb_iframe_widget,
.fb-silver-card .fb_iframe_widget span,
.fb-silver-card iframe {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .fb-silver-card {
        width: 95%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .fb-silver-card {
        width: 96%;
        padding: 0.8rem;
        border-radius: 10px;
    }
}

/* ==================================================
   REDUCE RANKING BUTTON SIZE
================================================== */
/* Apply to all ranking button containers */
.rankings .glow-btn--black span,
[id^="rankings_select_"] .glow-btn--black span {
    padding: 8px 10px !important;
    font-size: 0.8rem !important;
    letter-spacing: 1.5px !important;
    line-height: 1.2 !important;
}

/* ==================================================
   REMOVE WHITE OUTLINE FROM REGISTRATION/LOGIN BUTTONS
================================================== */
.registration_form .glow-btn--black:before,
.login_form .glow-btn--black:before,
#registration_form .glow-btn--black:before,
#login_form_page .glow-btn--black:before {
    display: none !important;
}

.registration_form .glow-btn--black,
.login_form .glow-btn--black,
#registration_form .glow-btn--black,
#login_form_page .glow-btn--black {
    padding: 0 !important;
    border: none !important;
}

/* Rules Dialog Styling (for jQuery UI dialog) */
#rules_content {
	color: #d1d5dc;
	font-family: 'Cormorant', 'Times New Roman', Times, serif;
	line-height: 1.8;
	font-size: 1rem;
	max-height: 500px;
	overflow-y: auto;
	padding: 1rem;
}

#rules_content .rules-section-title {
	font-size: 1.3rem;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

#rules_content .rules-section-title:first-child {
	margin-top: 0;
}

#rules_content .rules-list {
	margin: 0.75rem 0;
	padding-left: 1.5rem;
	font-size: 0.95rem;
}

#rules_content .rules-list li {
	margin-bottom: 0.5rem;
}

#rules_content .rules-footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	font-size: 0.95rem;
}

/* jQuery UI Dialog Customization for Rules */
.ui-dialog {
	background: rgba(0, 0, 0, 0.9);
	border: 1px solid rgba(209, 213, 220, 0.2);
	border-radius: 0.5rem;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.ui-dialog .ui-dialog-titlebar {
	background: rgba(17, 17, 17, 0.8);
	border-bottom: 1px solid rgba(209, 213, 220, 0.2);
	padding: 1rem;
	color: #d1d5dc;
	font-family: 'Cormorant', 'Times New Roman', Times, serif;
	font-weight: 700;
	font-size: 1.25rem;
}

.ui-dialog .ui-dialog-title {
	color: #d1d5dc;
	font-family: 'Cormorant', 'Times New Roman', Times, serif;
	font-weight: 700;
}

.ui-dialog .ui-dialog-titlebar-close {
	background: transparent;
	border: none;
	color: #d1d5dc;
	font-size: 1.5rem;
	font-weight: 700;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.ui-dialog .ui-dialog-titlebar-close:hover {
	opacity: 1;
}

.ui-dialog .ui-dialog-content {
	background: rgba(0, 0, 0, 0.6);
	color: #d1d5dc;
	padding: 1.5rem;
}



/* MagicMu Premium Loader */
#loading.mmv-loading,
.mmv-loading{
    position:fixed!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    z-index:999999!important;
    display:none;
    align-items:center!important;
    justify-content:center!important;
    background:
        radial-gradient(circle at 50% 45%, rgba(25,191,255,.14), transparent 34%),
        linear-gradient(180deg, rgba(0,18,36,.98), rgba(0,4,10,.99))!important;
    overflow:hidden!important;
}

.mmv-loading-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 18% 22%, rgba(85,223,255,.16) 0 1px, transparent 2px),
        radial-gradient(circle at 72% 18%, rgba(255,255,255,.10) 0 1px, transparent 2px),
        radial-gradient(circle at 48% 78%, rgba(25,191,255,.12) 0 1px, transparent 2px);
    background-size:190px 190px, 270px 270px, 330px 330px;
    opacity:.75;
    animation:mmvStarsMove 9s linear infinite;
}

.mmv-loading-box{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:34px;
    min-width:320px;
    border-radius:28px;
    border:1px solid rgba(85,223,255,.22);
    background:
        radial-gradient(circle at 50% 30%, rgba(25,191,255,.18), transparent 42%),
        linear-gradient(180deg, rgba(3,18,34,.66), rgba(0,5,12,.86));
    box-shadow:
        0 0 60px rgba(0,145,255,.20),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.mmv-loading-runes{
    position:relative;
    width:190px;
    height:190px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    filter:drop-shadow(0 0 22px rgba(25,191,255,.35));
}

.mmv-loading-ring{
    position:absolute;
    inset:0;
    border-radius:50%;
    border:2px solid transparent;
}

.mmv-loading-ring.ring-1{
    border-top-color:#55dfff;
    border-right-color:rgba(85,223,255,.45);
    box-shadow:0 0 22px rgba(25,191,255,.35);
    animation:mmvSpin 1.7s linear infinite;
}

.mmv-loading-ring.ring-2{
    inset:15px;
    border-left-color:#0b8cff;
    border-bottom-color:rgba(11,140,255,.55);
    animation:mmvSpinReverse 2.4s linear infinite;
}

.mmv-loading-ring.ring-3{
    inset:31px;
    border-top-color:rgba(255,210,92,.72);
    border-bottom-color:rgba(85,223,255,.44);
    border-style:dashed;
    animation:mmvSpin 4.8s linear infinite;
}

.mmv-loading-runes:before{
    content:"";
    position:absolute;
    inset:47px;
    border-radius:50%;
    background:
        radial-gradient(circle, rgba(25,191,255,.20), transparent 56%),
        rgba(0,8,18,.76);
    border:1px solid rgba(85,223,255,.30);
    box-shadow:inset 0 0 30px rgba(0,145,255,.22), 0 0 25px rgba(0,145,255,.18);
}

.mmv-loading-logo{
    position:relative;
    z-index:2;
    width:104px;
    height:104px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

.mmv-loading-logo img{
    max-width:150px;
    max-height:120px;
    object-fit:contain;
    animation:mmvPulse 1.8s ease-in-out infinite;
}

.mmv-loading-kicker{
    display:block;
    color:#55dfff;
    font-weight:900;
    letter-spacing:5px;
    font-size:12px;
    text-transform:uppercase;
    margin-top:2px;
    text-shadow:0 0 18px rgba(85,223,255,.65);
}

.mmv-loading-title{
    display:block;
    margin-top:9px;
    color:#fff;
    font-family:Cinzel, Georgia, 'Times New Roman', serif;
    font-size:28px;
    letter-spacing:1px;
    text-shadow:0 3px 0 rgba(0,0,0,.75),0 0 24px rgba(25,191,255,.36);
}

.mmv-loading-sub{
    display:block;
    margin-top:7px;
    color:#9fb4cf;
    font-size:13px;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

@keyframes mmvSpin{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
}

@keyframes mmvSpinReverse{
    from{transform:rotate(360deg)}
    to{transform:rotate(0deg)}
}

@keyframes mmvPulse{
    0%,100%{transform:scale(1);filter:drop-shadow(0 0 8px rgba(255,210,92,.28))}
    50%{transform:scale(1.045);filter:drop-shadow(0 0 20px rgba(85,223,255,.38))}
}

@keyframes mmvStarsMove{
    from{background-position:0 0,0 0,0 0}
    to{background-position:190px 190px,-270px 270px,330px -330px}
}

@media(max-width:640px){
    .mmv-loading-box{
        min-width:260px;
        padding:26px 20px;
    }
    .mmv-loading-runes{
        width:150px;
        height:150px;
    }
    .mmv-loading-logo img{
        max-width:122px;
    }
    .mmv-loading-title{
        font-size:23px;
    }
}

