   /* Footer Styling */
    .forum-footer {
        background-color: #212428;
        color: #ffffff;
        padding: 30px 20px;
        text-align: center;
        font-family: Arial, sans-serif;
        font-size: 14px;
    }

    .forum-footer a {
        color: #ff014f;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }

    .forum-footer a:hover {
        color: #ffffff;
    }

    .footer-content {
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer-logo img {
        max-width: 150px;
        margin-bottom: 15px;
    }

    .footer-links {
        margin: 15px 0;
    }

    .footer-links a {
        margin: 0 10px;
    }

    .footer-disclaimer {
        font-size: 12px;
        color: #cccccc;
        margin-top: 10px;
        max-width: 800px;
        margin: 10px auto;
    }

    .footer-bottom {
        margin-top: 20px;
        font-size: 13px;
    }


/* Guest Cube - Square & Tall */
.guest-cube {
    width: 350px;
    height: 450px;
    perspective: 1000px;
    margin: auto;
    position: relative;
}

/* Inner 3D Cube */
.guest-cube-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
}

/* Cube Sides */
.guest-cube-side {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    background: #2f333a;
    color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
	justify-content: space-between;
}

/* Position Each Side */
.guest-cube-front  { transform: rotateY(0deg) translateZ(175px); }
.guest-cube-right  { transform: rotateY(90deg) translateZ(175px); }
.guest-cube-back   { transform: rotateY(180deg) translateZ(175px); }
.guest-cube-left   { transform: rotateY(270deg) translateZ(175px); }



.guest-cube-side  h2{font-size: 4rem!important;}
.guest-cube-side  p{font-size: 2rem!important;}
/* Flip Button */
.flip-btn {
    margin-top: 15px;
    padding: 10px 15px;
    border: none;
    background: #ff014f;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.flip-btn:hover {
    background: #d60065;
}

/* Benefits List */
.guest-benefits {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    font-size: 16px;
}

.guest-benefits li {
    margin: 8px 0;
}

















/* Profile Card Container */
.profile-card {
    width: 280px;
    height: 380px;
    perspective: 1000px;
    margin: auto;
}

/* Inner Wrapper for Flip Effect */
.profile-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
}

/* Front & Back Faces */
.profile-card-front, .profile-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    background: #2f333a;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Avatar */
.avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ff014f;
    margin-bottom: 10px;
}

/* Username & Group Rank */
.username {
    font-size: 18px;
    font-weight: bold;
}

.group-rank {
    font-size: 14px;
    background: #ff014f;
	border: 2px solid #ff014f;
	color: white;
    padding: 4px 10px;
    border-radius: 5px;
    margin-top: 5px;
}

/* Stats Grid */
.stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.stats div {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 5px;
    width: 50px;
}

/* Flip Button */
.flip-btn {
    margin-top: 15px;
    padding: 8px 15px;
    border: none;
    background: #ff014f;
	border: 2px solid #ff014f;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.flip-btn:hover {
    background: none;border: 2px solid #ff014f;

}

/* Back Side Styling */
.profile-card-back {
    transform: rotateY(180deg);
    text-align: center;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin: 8px 0;
    font-size: 14px;
}

.contact-info a {
    color: #ff014f;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Flip Effect */
.profile-card.flipped .profile-card-inner {
    transform: rotateY(180deg);
}
















.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 100%;
    margin: auto;
        }


        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-card img {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }

        .category-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .category-description {
            font-size: 0.9rem;
            color: #dddddd;
            margin-bottom: 15px;text-align: center;
        }

        .category-stats {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #bbbbbb;
        }
		
		
	  .xuc-card-container {
        perspective: 1000px;    min-height: 300px; 
    }

    .xuc-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.8s;
    }

    .category-card.xuc-flipped .xuc-card-inner {
        transform: rotateY(180deg);
    }

.xuc-card-front{padding: 15px;}
.xuc-card-back{padding: 15px;right: 0px;}
    .xuc-card-front, .xuc-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
    }


.xuc-card-front:hover, .xuc-card-back:hover {
  background-position: 100% 100%; /* Reverse position on hover */
}

    .xuc-card-back {

        transform: rotateY(180deg);
    }

    .xuc-toggle-button {
position: absolute;
    top: 0;
    left: 0;
    font-size: 1em;
    cursor: pointer;
    border: none;
    background-color: #ffffff14;
    border-top-left-radius: 10px;
    padding: 5px 10px;
    color: white;
		width: 50px;
    }

.indxsubsflip{margin: 0px; padding: 0px; font-weight: bold; font-size: 2rem;}



 /* categories gradient colors */

.catcol18 {
    background: linear-gradient(to bottom right, #c04040, #780060 41%, #4b000d 60%, #2b0029);
    transition: background 1s ease;
    background-size: 200% 200%;
    background-position: 0% 0%;
}

.catcol17 {
    background: linear-gradient(to bottom right, #c04040, #780f00 41%, #4b0000 60%, #2b1400);
    transition: background 1s ease;
    background-size: 200% 200%;
    background-position: 0% 0%;
}


.catcol16 {
    background: linear-gradient(to bottom right, #c08140, #782300 41%, #4b2900 60%, #2b1d00);
    transition: background 1s ease;
    background-size: 200% 200%;
    background-position: 0% 0%;
}

.catcol15 {
background: linear-gradient(to bottom right, #408cc0, #006678 41%, #00494b 60%, #002b25);
    transition: background 1s ease;
    background-size: 200% 200%;
    background-position: 0% 0%;
}

.catcol14 {
    background: linear-gradient(to bottom right, #b3c040, #547800 41%, #4b4800 60%, #252b00);
    transition: background 1s ease;
    background-size: 200% 200%;
    background-position: 0% 0%;
}

.catcol2 {
  background: linear-gradient(to bottom right, #4d40c0, #0c0078 41%, #09004b 60%, #04002b);
  transition: background 1s ease;
  background-size: 200% 200%;
  background-position: 0% 0%;
}

.catcol3 {
    background: linear-gradient(to bottom right, #40c062, #297800 41%, #1b4b00 60%, #0e2b00);
    transition: background 1s ease;
    background-size: 200% 200%;
    background-position: 0% 0%;
}

.catcol4 {
    background: linear-gradient(to bottom right, #4076c0, #003878 41%, #00374b 60%, #00272b);
    transition: background 1s ease;
    background-size: 200% 200%;
    background-position: 0% 0%;
}

.catcol5 {
    background: linear-gradient(to bottom right, #9940c0, #3d0078 41%, #47004b 60%, #16002b);
    transition: background 1s ease;
    background-size: 200% 200%;
    background-position: 0% 0%;
}


.catcol9, .catcol10, .catcol11, .catcol12 {
    background: linear-gradient(to bottom right, #4076c0, #003878 41%, #00374b 60%, #00272b);
    transition: background 1s ease;
    background-size: 200% 200%;
    background-position: 0% 0%;
}
.catcol9 img {background: #ffffff;border-radius: 23%;box-shadow: 1px 4px 1px black;}
.catcol10 img {background: #ffffff;border-radius: 23%;box-shadow: 1px 4px 1px black;}
.catcol11 img {background: #ffffff;border-radius: 23%;box-shadow: 1px 4px 1px black;}
.catcol12 img {background: #ffffff;border-radius: 23%;box-shadow: 1px 4px 1px black;}


.tttcattt{padding: 10px 15px; border-bottom: 1px solid #151618; background-color: #1f2125;}


.thead{justify-content: space-between; margin: 20px;color: #ffffff;}
.pstbitclassicpostsa{border: 1px solid #373a41; margin: 10px 10px 4rem 10px; padding: 10px; justify-content: space-between; text-align: left; padding: 35px 50px 35px 50px; transition: 0.5s all ease-in-out; position: relative; border-radius: 10px; background: var(--background-color-1); box-shadow: var(--shadow-1); position: relative; z-index: 1; height: 100%;}
.post_content{width: 100%;}
.buttonnewthr{
	padding: 0 16px;
    border-radius: 500px;
    background: #ff014f;
    color: #ffffff;
    font-size: 2rem;
    border: 2px solid #ff014f;
	}
.buttonnewthr:hover{
	padding: 0 16px;
    border-radius: 500px;
    background: none;
    color: #ffffff;
    font-size: 2rem;
	border: 2px solid #ff014f;
	}





/* Quick Reply Layout */
.quickreply-container {
    display: flex;
    gap: 15px;
    padding: 10px 0;
	margin: 20px;
}

/* User Avatar (Big & Round) */
.quickreply-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Message Box (Speech Bubble) */
.quickreply-box {
    position: relative;
    flex-grow: 1;
    max-width: 100%;
}

/* Text Area (Styled like a Chat Bubble) */
.quickreply-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #373a41;
    border-radius: 18px;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
    transition: border-color 0.3s ease-in-out;
}

/* Textarea Focus Effect */
.quickreply-box textarea:focus {
    border-color: #ff014f; /* red color on focus */
    outline: none;
}

/* Small Triangle (Pointer) */
.quickreply-box::before {
    content: "";
    position: absolute;
    top: 15px;
    left: -12px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid #373a41; /* Default color */
    transition: border-right-color 0.3s ease-in-out;
}

/* When Input is Focused, Change Both Border and Triangle */
.quickreply-box:focus-within {
    border-color: #ff014f; /* Same as textarea border on focus */
}

.quickreply-box:focus-within::before {
    border-right-color: #ff014f; /* Triangle matches border */
}

/* Submit Button */
.quickreply-footer {
    margin-top: 8px;
    text-align: right;
}

.quickreply-footer .button {
    padding: 8px 15px;
    font-size: 14px;
    border: 1px solid #373a41;
    background: none;
    cursor: pointer;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.quickreply-footer .button:hover {
    border-color: #ff014f;
}
select { border: 1px solid #383c43; }

.post_body {
    word-wrap: break-word; /* Ensures long words break */
    overflow-wrap: break-word; /* Ensures wrapping in modern browsers */
    white-space: normal; /* Prevents text from running in a single line */
    max-width: 100%; /* Ensures it doesn't exceed the container */
}










/* Header */
.thread-header {color: white; text-align: center; border-bottom: 1px solid #373a41; padding-bottom: 10px;}



/* Labels */
.thread-label {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Input and Textarea */
.thread-input input,
.thread-input textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Submit Buttons */
.thread-footer {
    text-align: center;
    margin-top: 10px;
}

.thread-footer .button {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.thread-footer .button:hover {
    background-color: #0056b3;
}




/* Editor Toolbar (Above the Textarea) */
.editor-toolbar {
    margin-bottom: 8px;
    border: 1px solid #ccc;
    padding: 5px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

/* Make Sure Buttons Inside the Toolbar Look Good */
.editor-toolbar button,
.editor-toolbar img {
    cursor: pointer;
    margin: 2px;
}


.checkbox{opacity: 1!important; position: relative!important; width: auto!important; height: auto!important;}
.form-group input{height: auto!important; width: auto!important;}

.upload-progress{border: 2px dashed #ffffff; padding: 10px; text-align: center; margin: 20px; cursor: pointer;}



input[type="button"] {
    width: auto;
    padding: 0 30px;
    border-radius: 500px;
    display: inline-block;
    font-weight: 500;
    transition: 0.3s;
    height: auto;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: var(--p-medium);
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b3);
    border: 2px solid var(--color-primary);
    transition: var(--transition);
}



input[type="button"]:hover{
    border-radius: 500px;
    background: none;
    color: #ffffff;
	border: 2px solid #ff014f;
	}

.form-header{margin: 20px; color: white;}
.modal-content{border: 1px solid #373a41; padding: 35px 50px 35px 50px; border-radius: 10px; background: var(--background-color-1); box-shadow: var(--shadow-1); width: 50%; margin: auto;}


.form-group2 input {
    height: 40px;
    width: 100%;background: white; border-radius: 10px;margin-bottom: 20px;
}

td .trow144, .tcat44, .thead44 {
    border: 1px solid #373a41!important;
    padding: 7px 10px;
}


/* Dark Theme for All Checkboxes */
input[type="checkbox"] {
    appearance: none;
    width: 18px!important;
    height: 18px!important;
    border: 2px solid #383c43;
	padding: 0px !important;
    background-color: #222;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

/* Checked State */
input[type="checkbox"]:checked {
    background-color: #ff014f; /* Green when checked */
    border-color: #ff014f;
}

/* Checkmark inside checkbox */
input[type="checkbox"]::before {
    content: '✔';
    font-size: 14px;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

input[type="checkbox"]:checked::before {
    opacity: 1;
    color: black;
}




/* Dropdown Styling -xucce */
.dropdown-xucce {
    position: relative;
    display: inline-block;
}

.dropbtn-xucce {
    color: white;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #373a41;
    background: var(--background-color-1);
    box-shadow: var(--shadow-1);
}

.dropbtn-xucce:hover {
    background-color: #666;
}

.dropdown-content-xucce {
    display: none;
position: absolute;
    background-color: #333;
    min-width: 120px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #373a41;
    background: var(--background-color-1);
    margin-top: 3px;
}

.dropdown-content-xucce a {
    color: white;
    padding: 8px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content-xucce a:hover {
    background-color: #3d4148;
}
