:root {
    --primary: #5b8cff;
    --primary-dark: #4a75e0;
    --secondary: #7b9ff5;
    --dark: #121a25;
    --darker: #0d131b;
    --darkest: #080c12;
    --light: #e0e6f0;
    --lighter: #f0f4fc;
    --danger: #ff6b6b;
    --warning: #ffcc4d;
    --success: #5dda82;
    --tool-1: #ff7e5f;
    --tool-2: #4dffb8;
    --tool-3: #9b59b6;
    --tool-4: #f1c40f;
    --tool-5: #e74c3c;
    --tool-6: #1abc9c;
    --tool-7: #3498db;
    --tool-8: #d35400;
    --tool-9: #1abc9c;
    --tool-10: #e84393;
    /* additional vars used by item browser page */
    --bg: #090b0f;
    --surface: #0f1318;
    --card: #141920;
    --border: #1e2736;
    --border2: #28364a;
    --green: #4ade80;
    --green2: #22c55e;
    --cyan: #38bdf8;
    --gold: #fbbf24;
    --orange: #fb923c;
    --red: #f87171;
    --purple: #a78bfa;
    --text: #dde6f0;
    --muted: #4a5a72;
    --muted2: #7a8fa8;
    --px: 'Montserrat',sans-serif;
}
.tool-card[data-tool="admin-checker"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-9), #16a085);
}

.tool-card[data-tool="admin-checker"] .tool-title {
    color: var(--tool-9);
}

.tool-card[data-tool="admin-checker"] .tool-btn {
    background: linear-gradient(to right, var(--tool-9), #16a085);
}

.tool-card[data-tool="admin-checker"] .tool-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tool-card[data-tool="growtopia-news"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-10), #fd79a8);
}

.tool-card[data-tool="growtopia-news"] .tool-btn {
    background: linear-gradient(to right, var(--tool-10), #fd79a8);
}

.tool-card[data-tool="growtopia-news"] .tool-btn:hover {
    background: linear-gradient(to right, #fd79a8, var(--tool-10));
}

.icon-growtopia-news { 
    color: var(--tool-10) !important; 
}
/* Weather Selector Styles */
.weather-selector {
    position: relative;
    display: inline-block;
}

.weather-toggle-btn {
    background: rgba(91, 140, 255, 0.1);
    border: 1px solid rgba(91, 140, 255, 0.3);
    color: var(--light);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.weather-toggle-btn:hover {
    background: rgba(91, 140, 255, 0.2);
    transform: translateY(-1px);
}

.weather-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.weather-dropdown.show {
    display: block;
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.weather-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.weather-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.weather-option img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.weather-option span {
    font-size: 11px;
    text-align: center;
    color: var(--light);
    font-weight: 500;
}

/* Weather-specific background images */
body.weather-apocalypse {
    background-image: url('../images/Apocalypse.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-comet {
    background-image: url('../images/Comet.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-arid {
    background-image: url('../images/Arid.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-autumn {
    background-image: url('../images/Autumn.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-balloonwarz {
    background-image: url('../images/BalloonWarz.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-black_hole {
    background-image: url('../images/Black_Hole.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-celebrity {
    background-image: url('../images/Celebrity.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-crack_reality {
    background-image: url('../images/Crack_Reality.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-dark_mountains {
    background-image: url('../images/Dark_Mountains.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-emerald {
    background-image: url('../images/Emerald.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-draconic {
    background-image: url('../images/Draconic.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-frozen {
    background-image: url('../images/Frozen.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-party {
    background-image: url('../images/Party.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-neptune {
    background-image: url('../images/Neptune.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.weather-pinuski {
    background-image: url('../images/Pinuski.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Update button colors based on weather theme */
body.weather-apocalypse .btn,
body.weather-apocalypse .tool-btn,
body.weather-apocalypse .btn-primary {
    background: linear-gradient(to right, #8B0000, #DC143C) !important;
}

body.weather-comet .btn,
body.weather-comet .tool-btn,
body.weather-comet .btn-primary {
    background: linear-gradient(to right, #4A4A4A, #696969) !important;
}

body.weather-arid .btn,
body.weather-arid .tool-btn,
body.weather-arid .btn-primary {
    background: linear-gradient(to right, #D2691E, #CD853F) !important;
}

body.weather-autumn .btn,
body.weather-autumn .tool-btn,
body.weather-autumn .btn-primary {
    background: linear-gradient(to right, #8B4513, #D2691E) !important;
}

body.weather-balloonwarz .btn,
body.weather-balloonwarz .tool-btn,
body.weather-balloonwarz .btn-primary {
    background: linear-gradient(to right, #FF69B4, #9370DB) !important;
}

body.weather-black_hole .btn,
body.weather-black_hole .tool-btn,
body.weather-black_hole .btn-primary {
    background: linear-gradient(to right, #2F4F4F, #696969) !important;
}

body.weather-celebrity .btn,
body.weather-celebrity .tool-btn,
body.weather-celebrity .btn-primary {
    background: linear-gradient(to right, #FFD700, #FFA500) !important;
}

body.weather-crack_in_reality .btn,
body.weather-crack_in_reality .tool-btn,
body.weather-crack_in_reality .btn-primary {
    background: linear-gradient(to right, #4B0082, #8A2BE2) !important;
}

body.weather-dark_mountains .btn,
body.weather-dark_mountains .tool-btn,
body.weather-dark_mountains .btn-primary {
    background: linear-gradient(to right, #2F4F4F, #708090) !important;
}

body.weather-emerald .btn,
body.weather-emerald .tool-btn,
body.weather-emerald .btn-primary {
    background: linear-gradient(to right, #008000, #32CD32) !important;
}

body.weather-draconic .btn,
body.weather-draconic .tool-btn,
body.weather-draconic .btn-primary {
    background: linear-gradient(to right, #DC143C, #FF4500) !important;
}

body.weather-frozen .btn,
body.weather-frozen .tool-btn,
body.weather-frozen .btn-primary {
    background: linear-gradient(to right, #4682B4, #87CEEB) !important;
}

body.weather-party .btn,
body.weather-party .tool-btn,
body.weather-party .btn-primary {
    background: linear-gradient(to right, #FF1493, #00BFFF) !important;
}

body.weather-neptune .btn,
body.weather-neptune .tool-btn,
body.weather-neptune .btn-primary {
    background: linear-gradient(to right, #000080, #4169E1) !important;
}

body.weather-pinuski .btn,
body.weather-pinuski .tool-btn,
body.weather-pinuski .btn-primary {
    background: linear-gradient(to right, #228B22, #32CD32) !important;
}

/* Make content areas slightly transparent to show background */
body:not(.weather-default) .tool-content,
body:not(.weather-default) .results-area,
body:not(.weather-default) .tool-card {
    background: rgba(13, 19, 27, 0.85) !important;
    backdrop-filter: blur(5px);
}

body:not(.weather-default) .tool-container {
    background: rgba(13, 19, 27, 0.9) !important;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin: 20px auto;
    padding: 30px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darkest);
    color: var(--light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darkest);
    color: var(--light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
header {
    background: var(--darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;  
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo i {
    margin-right: 10px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(91, 140, 255, 0.7));
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(91, 140, 255, 0.7));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(91, 140, 255, 1));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
    position: relative;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a i {
    margin-right: 8px;
    font-size: 14px;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
    background: rgba(91, 140, 255, 0.1);
}

/* Tool-specific colors for nav items */
.nav-links a[href*="dat-decoder"] i {
    color: var(--tool-1);
}

.nav-links a[href*="data-mining"] i {
    color: var(--tool-2);
}

.nav-links a[href*="rttex-converter"] i {
    color: var(--tool-3);
}

.nav-links a[href*="account-checker"] i {
    color: var(--tool-4);
}

.nav-links a[href*="gacha-simulator"] i {
    color: var(--tool-5);
}

.nav-links a[href*="server-monitor"] i {
    color: var(--tool-6);
}

.nav-links a[href*="cache-checker"] i {
    color: var(--tool-7);
}
.nav-links a[href*="render-checker"] i {
    color: var(--tool-8);
}

/* Item Browser specific color (use tool-10 or create new variable if needed) */
.nav-links a[href*="items"] i {
    color: var(--tool-10);
}

.tool-card[data-tool="level-calculator"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-5), #c0392b);
}

.tool-card[data-tool="level-calculator"] .tool-title {
    color: var(--tool-5);
}

.tool-card[data-tool="level-calculator"] .tool-btn {
    background: linear-gradient(to right, var(--tool-5), #c0392b);
}

/* Level Calculator specific styles */
.level-btn {
    background: linear-gradient(to right, var(--tool-5), #c0392b);
    color: white;
}

.level-btn:hover {
    background: linear-gradient(to right, #c0392b, var(--tool-5));
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.xp-breakdown {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.xp-breakdown-header {
    background: var(--dark);
    padding: 12px 15px;
    font-weight: 600;
    color: var(--lighter);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xp-breakdown-content {
    max-height: 300px;
    overflow-y: auto;
    background: var(--darkest);
}

.xp-level {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.xp-level:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.xp-level:last-child {
    border-bottom: none;
}

.xp-level-current {
    background: rgba(231, 76, 60, 0.1);
    border-left: 3px solid var(--tool-5);
}

.xp-level-target {
    background: rgba(46, 204, 113, 0.1);
    border-left: 3px solid var(--success);
}

.xp-total {
    background: var(--dark);
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--lighter);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.xp-total span {
    color: var(--tool-5);
}

.level-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #8a9bb0;
}

.level-info span {
    font-weight: 600;
    color: var(--lighter);
}
.visitor-count {
    background: rgba(91, 140, 255, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.visitor-count i {
    margin-right: 5px;
    color: var(--primary);
}

/* Main Content */
.main {
    padding: 30px 0;
    flex: 1;
}

/* Content Area */
.content-area {
    flex: 1;
    padding: 0 20px;
}

/* Home Page */
.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;  
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title i {
    margin: 0 15px;
    filter: drop-shadow(0 0 10px rgba(91, 140, 255, 0.8));
}

.hero-subtitle {
    font-size: 20px;
    color: #8a9bb0;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Tool Card */
.tool-card {
    background: var(--darker);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tool-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.tool-card[data-tool="dat-decoder"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-1), #ff6b6b);
}

.tool-card[data-tool="data-mining"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-2), #2ecc71);
}

.tool-card[data-tool="rttex-converter"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-3), #8e44ad);
}

.tool-card[data-tool="account-checker"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-4), #f39c12);
}

.tool-card[data-tool="gacha-simulator"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-5), #c0392b);
}

.tool-card[data-tool="server-monitor"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-6), #16a085);
}

.tool-card[data-tool="cache-checker"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-7), #2980b9);
}
.tool-card[data-tool="render-world"] .tool-icon {
    background: linear-gradient(135deg, var(--tool-8), #e67e22)
}

.tool-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--lighter);
}

.tool-card[data-tool="dat-decoder"] .tool-title {
    color: var(--tool-1);
}

.tool-card[data-tool="data-mining"] .tool-title {
    color: var(--tool-2);
}

.tool-card[data-tool="rttex-converter"] .tool-title {
    color: var(--tool-3);
}

.tool-card[data-tool="account-checker"] .tool-title {
    color: var(--tool-4);
}

.tool-card[data-tool="gacha-simulator"] .tool-title {
    color: var(--tool-5);
}

.tool-card[data-tool="server-monitor"] .tool-title {
    color: var(--tool-6);
}

.tool-card[data-tool="cache-checker"] .tool-title {
    color: var(--tool-7);
}
.tool-card[data-tool="render-world"] .tool-title {
    color: var(--tool-8);
}

.tool-description {
    color: #8a9bb0;
    margin-bottom: 20px;
    font-size: 14px;
    flex-grow: 1;
}

.tool-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: white;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
}

.tool-card[data-tool="dat-decoder"] .tool-btn {
    background: linear-gradient(to right, var(--tool-1), #ff6b6b);
}

.tool-card[data-tool="data-mining"] .tool-btn {
    background: linear-gradient(to right, var(--tool-2), #2ecc71);
}

.tool-card[data-tool="rttex-converter"] .tool-btn {
    background: linear-gradient(to right, var(--tool-3), #8e44ad);
}

.tool-card[data-tool="account-checker"] .tool-btn {
    background: linear-gradient(to right, var(--tool-4), #f39c12);
}

.tool-card[data-tool="gacha-simulator"] .tool-btn {
    background: linear-gradient(to right, var(--tool-5), #c0392b);
}

.tool-card[data-tool="server-monitor"] .tool-btn {
    background: linear-gradient(to right, var(--tool-6), #16a085);
}

.tool-card[data-tool="cache-checker"] .tool-btn {
    background: linear-gradient(to right, var(--tool-7), #2980b9);
}
.tool-card[data-tool="render-world"] .tool-btn {
    background: linear-gradient(to right, var(--tool-8), #d35400);
}

.tool-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--lighter);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--darker);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(91, 140, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--lighter);
}

.feature-content p {
    color: #8a9bb0;
    font-size: 14px;
}

/* Footer */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 18px;
    font-size: 18px;
    color: var(--lighter);
}

.footer-section p, 
.footer-section a {
    color: #8a9bb0;
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-section a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a,
.social-links a:focus,
.social-links a:active,
.social-links a:hover {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    text-decoration: none !important;
}

.social-links a:focus:not(:focus-visible) {
    outline: none !important;
}

.social-links a:focus-visible {
    outline: 2px solid var(--tool-1) !important;
    outline-offset: 3px;
    border-radius: 2px;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6a7b90;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .nav-links li {
        margin: 5px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .nav-links li {
        margin: 5px 8px;
    }
    
    .hero-title {
        font-size: 36px;
        flex-direction: column;
    }
    
    .hero-title i {
        margin: 10px 0;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .visitor-count {
        display: none;
    }
}

/* Tool-specific pages */
.tool-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
}

.tool-header {
    text-align: center;
    margin-bottom: 40px;
}

.tool-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--lighter);
}

.tool-header p {
    color: #8a9bb0;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.tool-content {
    background: var(--darker);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.tool-section {
    margin-bottom: 30px;
}

.tool-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--lighter);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.tool-section p {
    color: #8a9bb0;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Form elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--lighter);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--dark);
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(91, 140, 255, 0.2);
}

.btn {
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Results area */
.results-area {
    background: var(--dark);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.results-header h3 {
    font-size: 18px;
    color: var(--lighter);
}

.results-content {
    color: #8a9bb0;
    font-family: monospace;
    white-space: pre-wrap;
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    background: var(--darkest);
    border-radius: 6px;
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
