:root {
	/* Theme Colors */
	--main-bg: #050507;
	--card-bg: rgba(20, 22, 28, 0.6);
	--card-bg-hover: rgba(30, 32, 40, 0.8);
	--input-bg: rgba(255, 255, 255, 0.05);

	/* Accent - Red Neon */
	--accent: #ff2a2a;
	--accent-rgb: 255, 42, 42;
	--accent-hover: #ff4747;
	--accent-gradient: linear-gradient(135deg, #ff2a2a 0%, #d90e0e 100%);
	--accent-glow: 0 0 20px rgba(255, 42, 42, 0.4);

    /* Status Colors */
    --success: #00c851;
    --success-rgb: 0, 200, 81;
    --gold: #ffd700;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);

	/* Text */
	--white: #ffffff;
	--text-main: #f0f2f5;
	--text-muted: #949aa8;

	/* Shadows & Glass */
	--glass-border: 1px solid rgba(255, 255, 255, 0.08);
	--glass-highlight: 1px solid rgba(255, 255, 255, 0.15);
	
	--radius-lg: 24px;
	--radius-md: 16px;
	--radius-sm: 10px;
	
	--font-primary: 'Montserrat', sans-serif;
	--font-secondary: 'Poppins', sans-serif;
	
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-primary);
	background: var(--main-bg);
	color: var(--text-main);
	min-height: 100vh;
	line-height: 1.6;
	overflow-x: hidden;
	background-image: 
		radial-gradient(circle at 15% 50%, rgba(255, 42, 42, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 85% 30%, rgba(70, 70, 255, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
}

/* --- Typography & Icons --- */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-secondary);
}

i {
	display: inline-flex;
	vertical-align: middle;
}

/* --- Layout Utilities --- */
.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

/* --- Glassmorphism --- */
.glass-effect {
	background: rgba(20, 20, 25, 0.7);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: var(--glass-border);
}

.glass-header {
	background: rgba(5, 5, 7, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: var(--glass-border);
}

.glass-card {
	background: var(--card-bg);
	backdrop-filter: blur(12px);
	border: var(--glass-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
	transition: var(--transition);
	padding: 15px 5px;
}

.glass-card:hover {
	border: var(--glass-highlight);
	background: var(--card-bg-hover);
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0,0,0,0.6), 0 0 30px rgba(var(--accent-rgb), 0.1);
}

/* --- Buttons --- */
.btn {
	cursor: pointer;
	border: 1px solid transparent;
	outline: none;
	font-family: var(--font-secondary);
	font-weight: 600;
	border-radius: var(--radius-sm);
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* Accent Button (Primary Action) */
.btn-accent {
	background: var(--accent-gradient);
	color: var(--white);
	box-shadow: var(--accent-glow);
}
.btn-accent:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(var(--accent-rgb), 0.5);
    border-color: rgba(255,255,255,0.2);
}

/* Secondary Button (Disabled State / Info) */
.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}
.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(0,0,0,0.2);
}

/* Success Button (Claimed) */
.btn-success {
    background: rgba(0, 200, 81, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

/* Trial Button Special Style */
.btn-trial {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    padding: 14px 32px;
}
.btn-trial:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 30px rgba(0, 200, 81, 0.4);
    background: linear-gradient(135deg, #00c851 0%, #007E33 100%);
    color: #fff;
}

/* Glow Effect for Buttons */
.btn-glow {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-glow::before {
	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.5s;
	z-index: -1;
}
.btn-glow:hover::before {
	left: 100%;
}

.btn-block { width: 100%; }

/* --- Login Modal --- */
.modal-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}

.modal-content.login-modal {
	background: rgba(20, 22, 28, 0.4); 
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	max-width: 450px;
	width: 100%;
	padding: 40px;
	border-radius: 30px;
	position: relative;
}

.modal-decor-bg {
	position: absolute;
	top: -50%; left: -50%;
	width: 200%; height: 200%;
	background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.15), transparent 60%);
	z-index: -1;
	pointer-events: none;
	animation: pulseBg 10s infinite alternate;
}

@keyframes pulseBg {
	0% { transform: scale(1); opacity: 0.5; }
	100% { transform: scale(1.1); opacity: 0.8; }
}

.modal-header {
	text-align: center;
	margin-bottom: 30px;
}

.logo-container {
	width: 80px; height: 80px;
	background: var(--accent-gradient);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.4);
	transform: rotate(45deg);
}

.logo-icon {
	font-size: 32px;
	color: #fff;
	transform: rotate(-45deg);
}

.modal-header h2 {
	font-size: 2rem;
	margin-bottom: 5px;
	background: linear-gradient(to right, #fff, #ccc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.modal-subtitle {
	color: var(--text-muted);
	font-size: 0.95rem;
}

/* Floating Form Inputs */
.form-group.floating-label {
	position: relative;
	margin-bottom: 25px;
}

.input-container {
	position: relative;
	background: var(--input-bg);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 12px;
	transition: var(--transition);
}

.input-container:focus-within {
	border-color: var(--accent);
	box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.2);
	background: rgba(255,255,255,0.08);
}

.form-input {
	width: 100%;
	padding: 24px 16px 8px 45px;
	background: transparent;
	border: none;
	outline: none;
	color: var(--white);
	font-size: 1rem;
	font-weight: 500;
	font-family: var(--font-primary);
}

.input-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	font-size: 1.1rem;
	transition: 0.3s;
}

.input-container:focus-within .input-icon {
	color: var(--accent);
}

.form-label {
	position: absolute;
	left: 45px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	pointer-events: none;
	transition: 0.3s ease all;
	font-size: 0.95rem;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
	top: 12px;
	font-size: 0.75rem;
	color: var(--accent);
	font-weight: 600;
}

#loginBtn {
	padding: 16px;
	font-size: 1.1rem;
	margin-top: 10px;
	border-radius: 12px;
}

.login-footer {
	margin-top: 24px;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.link-accent {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	margin-left: 5px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.link-accent:hover {
	color: #fff;
}

/* --- Header --- */
.header {
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--white);
}

.logo-icon-sm {
	color: var(--accent);
	font-size: 1.8rem;
}

.user-info {
	display: flex;
	align-items: center;
	gap: 20px;
}

.user-details {
	text-align: right;
}

.user-name {
	font-weight: 700;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.user-fullname {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.user-coin {
	background: rgba(255, 42, 42, 0.1);
	border: 1px solid rgba(255, 42, 42, 0.3);
	padding: 8px 16px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--accent);
	font-weight: 700;
	box-shadow: 0 0 15px rgba(255, 42, 42, 0.2);
}

/* Enhanced User Membership Badge */
.user-membership {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%); /* Gold Gradient */
    color: #000; /* Contrast text */
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); /* Gold Glow */
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: none;
    transform: translateY(0);
    transition: var(--transition);
    cursor: default;
}

.user-membership:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.user-membership .membership-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

.user-membership .membership-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Main Content --- */
.main-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 40px 24px;
	display: grid;
	gap: 40px;
}

.section-header {
	margin-bottom: 30px;
	padding: 30px 30px 0;
}

.section-title {
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 8px;
}

.section-icon {
	color: var(--accent);
}

.section-desc {
	color: var(--text-muted);
	margin-left: 45px;
}

/* Weekly FS Card */
.weekly-fs-card {
	padding-bottom: 30px;
}

.weekly-fs-content {
	padding: 0 30px 30px;
}

.fs-limits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	margin: 20px 0 40px;
}

.limit-box {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: var(--radius-md);
	padding: 20px;
	text-align: center;
	position: relative;
	transition: var(--transition);
    opacity: 0.6; /* Default dimmed for locked */
}
.limit-box.active {
	background: rgba(255, 42, 42, 0.15); /* Red tint for unlocked (Theme Match) */
	border-color: var(--accent);
    opacity: 1; /* Fully visible */
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px rgba(255, 42, 42, 0.2);
}
.limit-icon {
	font-size: 24px;
	margin-bottom: 10px;
	color: var(--text-muted);
    transition: 0.3s;
}
.limit-box.active .limit-icon {
	color: var(--accent);
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 42, 42, 0.6);
}
.limit-value {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--white);
}
.limit-req {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-top: 5px;
}

/* Progress Bar */
.fs-progress-container {
	margin-bottom: 30px;
	background: rgba(0,0,0,0.3);
	padding: 25px;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.05);
}

.progress-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.fs-progress-bar-wrapper {
	height: 30px;
	background: rgba(255,255,255,0.05);
	border-radius: 50px;
	padding: 4px;
	box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.fs-progress-bar {
	height: 100%;
	width: 100%;
	border-radius: 50px;
	overflow: hidden;
	position: relative;
}

.fs-progress-fill {
	height: 100%;
	background: var(--accent-gradient);
	border-radius: 50px;
	position: relative;
	width: 0%;
	transition: width 1s ease-out;
	box-shadow: 0 0 20px rgba(255, 42, 42, 0.5);
}
.fs-progress-fill::after {
	content: '';
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
	background-size: 20px 20px;
	animation: moveStripes 1s linear infinite;
	border-radius: 50px;
}
@keyframes moveStripes {
	0% { background-position: 0 0; }
	100% { background-position: 20px 20px; }
}

/* --- Claimed / Locked Visuals --- */
.fs-progress-fill.is-claimed {
    background: #444 !important; /* Koyu Gri */
    box-shadow: none !important;
}
.fs-progress-fill.is-claimed::after {
    background-image: linear-gradient(-45deg, rgba(0,0,0, 0.2) 25%, transparent 25%, transparent 50%, rgba(0,0,0, 0.2) 50%, rgba(0,0,0, 0.2) 75%, transparent 75%, transparent) !important;
}

#progressText.fs-locked {
    font-size: 0 !important; /* Varsayılan metni gizle */
    position: relative;
}
#progressText.fs-locked::after {
    content: "BU HAFTA TAMAMLANDI";
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    display: inline-block;
}

/* Weekly Card Footer Actions */
.fs-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Ekrana sığmazsa alt satıra geçsin */
}

.fs-info {
    flex: 1; /* Bilgi kısmı alanı kaplasın */
}

.fs-info-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-muted);
	margin-bottom: 5px;
}
.info-icon { color: var(--accent); }

/* Products Grid */
.shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
	padding: 0 30px 30px;
}

.shop-item {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius-md);
	padding: 30px 20px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.shop-item-header {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.shop-item:hover:not(.locked) {
	transform: translateY(-5px);
	background: rgba(255,255,255,0.06);
	border-color: var(--accent);
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.shop-item.locked {
	opacity: 0.6;
}
.shop-item.locked .shop-item-icon {
    filter: grayscale(1) opacity(0.5);
}
.shop-item-price {
	background: rgba(255,255,255,0.1);
	color: white;
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 700;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
	box-shadow: none;
    border: 1px solid rgba(255,255,255,0.1);
}
.shop-item:hover:not(.locked) .shop-item-price {
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 42, 42, 0.3);
}

.shop-item-requirement {
    margin-bottom: 10px !important;
}

.shop-item-icon {
	font-size: 50px;
	color: var(--accent);
	margin: 20px 0 10px;
	filter: drop-shadow(0 0 10px rgba(255,42,42,0.4));
    transition: 0.3s;
}
.shop-item:hover:not(.locked) .shop-item-icon {
    transform: scale(1.1);
}

.shop-item-fs {
	font-size: 2.2rem;
	font-weight: 800;
	color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.shop-btn {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.2);
	color: var(--text-muted);
	padding: 12px 25px;
	border-radius: 8px;
	margin-top: auto;
	width: 100%;
	transition: 0.3s;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.shop-btn:hover {
    background: white;
    color: black;
    border-color: white;
}
.shop-item:hover:not(.locked) .shop-btn {
	background: linear-gradient(90deg, #ff2a2a, #d90e0e);
    border-color: transparent;
	color: white;
	box-shadow: 0 5px 15px rgba(255, 42, 42, 0.4);
}
.shop-lock-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(3px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Footer & Extras */
.footer {
	text-align: center;
	padding: 40px 0;
	color: var(--text-muted);
	border-top: 1px solid rgba(255,255,255,0.05);
	margin-top: 40px;
}
.footer-logo {
	font-size: 1.5rem;
	color: white;
	font-weight: 700;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.back-to-rixibet {
	position: fixed;
	bottom: 30px;
	right: 30px;
	padding: 15px 25px;
	border-radius: 50px;
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	z-index: 99;
	transition: 0.3s;
}
.back-to-rixibet:hover {
	transform: scale(1.05);
	box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

/* Trial FS Card (Redesigned) */
.trial-fs-card {
    background: radial-gradient(circle at 10% 20%, #1a0505 0%, #0a0a0a 90%);
    border: 1px solid rgba(255, 42, 42, 0.2);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.trial-fs-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 42, 42, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.trial-fs-content {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Visual Section (Icon) */
.trial-fs-visual {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.2), rgba(200, 0, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.3);
    border: 1px solid rgba(255, 42, 42, 0.3);
}

.main-icon {
    font-size: 3rem;
    background: linear-gradient(to bottom, #fff, #ffaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 42, 42, 0.5));
}

/* Info Section */
.trial-fs-info {
    flex-grow: 1;
}

.welcome-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ff2a2a;
    background: rgba(255, 42, 42, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 42, 42, 0.2);
    letter-spacing: 1px;
}

.trial-fs-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    background: linear-gradient(to right, #ffffff, #ffe0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.game-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd0d0;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}
.game-tag i { color: #ff2a2a; }

.trial-fs-desc {
    color: #b0b0c0;
    font-size: 0.95rem;
    max-width: 500px;
    line-height: 1.6;
}

/* Action Section */
.trial-fs-action {
    flex-shrink: 0;
}

.btn-trial {
    background: linear-gradient(135deg, #ff2a2a 0%, #c00000 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(255, 42, 42, 0.4);
    transition: all 0.3s ease;
}

.btn-trial:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 200, 81, 0.6);
    background: linear-gradient(135deg, #00c851 0%, #007E33 100%);
    color: #fff;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.small-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
}

.big-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
}

.arrow-icon {
    font-size: 1.2rem;
    color: #fff;
    background: rgba(255,255,255,0.2);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 900px) {
    .trial-fs-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .trial-fs-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .trial-fs-desc {
        text-align: center;
    }
    
    .trial-fs-action {
        width: 100%;
    }
    .btn-trial {
        width: 100%;
        justify-content: space-between;
    }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    /* Header - Compact Layout */
    .header {
        padding: 10px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .logo { 
        width: 100%; 
        justify-content: center; 
        font-size: 1.3rem;
        margin-bottom: 0;
    }
    
    /* User Info Strip */
    .user-info {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.05); /* Strip background */
        padding: 8px 15px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        gap: 30px;
    }
    
    .user-details {
        text-align: left;
        order: 1;
        flex: 1; /* Take available left space */
    }
    
    .user-fullname { display: none; } /* Hide full name on mobile */
    .user-name { justify-content: flex-start; font-size: 0.95rem; }
    
    .user-membership {
        order: 2;
        padding: 4px 10px; /* Biraz padding kalsın */
        border: 1px solid rgba(255,255,255,0.2);
        font-size: 0.8rem;
        background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%); /* Gold gradient mobildede korunsun */
        color: #000;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }
    
    .user-coin {
        order: 3;
        grid-column: auto;
        background: transparent;
        border: 1px solid var(--accent);
        background: rgba(255, 42, 42, 0.1);
        padding: 5px 12px;
        font-size: 0.9rem;
        box-shadow: none;
        margin: 0;
    }
    .coin-label { display: none; } /* Compact coin view */
    
    /* Layout */
    .container, .main-container {
        padding: 20px 15px;
    }
    
    .section-header {
        padding: 0 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title { font-size: 1.4rem; }
    
    .section-desc { 
        margin-left: 0; 
        margin-top: 10px; 
        font-size: 0.9rem;
    }

    /* Grids */
    /* Horizontal Scroll for FS Limits on Mobile */
    .fs-limits-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px; /* Space for scroll action */
        -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
        scrollbar-width: none; /* Hide scrollbar Firefox */
        grid-template-columns: none; /* Reset grid */
        margin-bottom: 25px;
    }
    .fs-limits-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

    .limit-box {
        flex: 0 0 130px; /* Fixed width items */
        padding: 15px 10px;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 110px;
    }
    
    .limit-icon {
        font-size: 1.2rem; /* Smaller icon */
        margin-bottom: 8px;
    }
    
    .limit-value {
        font-size: 1.1rem; /* Smaller text */
    }

    /* Shop Grid - Always 2 columns on mobile */
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px 20px;
    }
    
    .shop-item {
        padding: 15px 10px; /* Reduced padding */
        min-height: auto;
    }

    .shop-item-icon {
        font-size: 32px; /* Smaller icon */
        margin: 10px 0 5px;
    }

    .shop-item-fs {
        font-size: 1.5rem; /* Compact title */
        margin-bottom: 5px;
    }
    
    .shop-item-price {
        font-size: 0.8rem; /* Smaller price tag */
        padding: 4px 10px;
        margin: 8px 0;
    }
    
    .shop-btn {
        padding: 8px 10px; /* Smaller button */
        font-size: 0.8rem;
    }


    /* FS Progress & Actions Responsive */
    .fs-progress-container {
        padding: 15px;
    }
    
    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 10px;
    }
    
    .progress-current {
        align-self: flex-end; /* Sağ tarafa yasla */
        font-size: 1rem;
    }

    #progressText.fs-locked::after {
        font-size: 0.8rem; /* Mobilde biraz daha küçük */
    }
    
    .fs-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .fs-info {
        width: 100%;
    }
    
    .fs-info-item {
        font-size: 0.85rem;
        margin-right: 0;
        margin-bottom: 8px; /* Alt alta diz */
    }
    
    .btn-claim {
        width: 100%; /* Tam genişlik buton */
        padding: 14px;
    }

    /* Remove single column force for small screens */
    @media (max-width: 480px) {
        /* Keep 2 columns even on small screens */
    }

    /* Cards */
    .weekly-fs-content { padding: 0 15px 25px; }
    
    .limit-box { padding: 15px; }
    
    .fs-actions {
        flex-direction: column;
    }
    .fs-info { width: 100%; }
    .btn-block-mobile { width: 100%; }
    .btn { width: 100%; justify-content: center; }
    
    /* Login Modal */
    .modal-content.login-modal {
        padding: 30px 20px;
        width: 90%;
    }
    
    .modal-header h2 { font-size: 1.8rem; }
}

/* --- SWEETALERT2 THEME OVERRIDES --- */
div:where(.swal2-container) div:where(.swal2-popup) {
    background: rgba(20, 22, 28, 0.95) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 2em;
}

div:where(.swal2-container) h2:where(.swal2-title) {
    color: #fff !important;
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 600;
}

div:where(.swal2-container) div:where(.swal2-html-container) {
    color: var(--text-muted) !important;
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    background: linear-gradient(135deg, #ff2a2a 0%, #d90e0e 100%) !important;
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.4) !important;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-primary);
    padding: 12px 30px;
    font-size: 1rem;
    border: none !important;
    outline: none !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border-radius: 12px;
    font-weight: 500;
    font-family: var(--font-primary);
    padding: 12px 25px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Custom Icon Colors */
div:where(.swal2-icon).swal2-question {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}
div:where(.swal2-icon).swal2-success {
    border-color: var(--success) !important;
    color: var(--success) !important;
}
div:where(.swal2-icon).swal2-error {
    border-color: #ff2a2a !important;
    color: #ff2a2a !important;
}
div:where(.swal2-icon).swal2-warning {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}
